:root {
  color-scheme: dark;
  --bg: #05070c;
  --bg-2: #080f1a;
  --surface: rgba(11, 15, 22, .78);
  --surface-strong: rgba(18, 36, 55, .88);
  --surface-soft: rgba(255, 255, 255, .055);
  --text: #f5f7fa;
  --muted: #a8b3c7;
  --line: rgba(245, 247, 250, .14);
  --blue: #0086ff;
  --blue-2: #0066ff;
  --cyan: #19c9ff;
  --orange: #ffba00;
  --orange-2: #ff6a00;
  --red: #ff512d;
  --green: #0aa660;
  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .48);
  --glow-blue: 0 0 26px rgba(0, 134, 255, .48), 0 0 82px rgba(0, 102, 255, .20);
  --glow-orange: 0 0 26px rgba(255, 186, 0, .38), 0 0 82px rgba(255, 81, 45, .18);
  --container: 1200px;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f7fa;
  --bg-2: #eef4ff;
  --surface: rgba(255, 255, 255, .78);
  --surface-strong: rgba(255, 255, 255, .92);
  --surface-soft: rgba(11, 15, 22, .045);
  --text: #0b0f16;
  --muted: #526174;
  --line: rgba(11, 15, 22, .13);
  --shadow: 0 28px 90px rgba(20, 38, 65, .16);
  --glow-blue: 0 0 20px rgba(0, 134, 255, .20), 0 20px 90px rgba(0, 102, 255, .12);
  --glow-orange: 0 0 20px rgba(255, 186, 0, .20), 0 20px 90px rgba(255, 81, 45, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 134, 255, .26), transparent 28rem),
    radial-gradient(circle at 86% 14%, rgba(255, 106, 0, .22), transparent 28rem),
    radial-gradient(circle at 50% 96%, rgba(0, 102, 255, .12), transparent 36rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 54%, var(--bg) 100%);
  color: var(--text);
  font-family: "SF Pro Display", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body::before {
  background:
    linear-gradient(112deg, transparent 0 22%, rgba(255, 255, 255, .055) 23%, transparent 24% 55%, rgba(0, 134, 255, .06) 56%, transparent 57%),
    linear-gradient(76deg, transparent 0 42%, rgba(255, 106, 0, .07) 43%, transparent 44% 100%);
  opacity: .78;
}

body::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at top, rgba(0,0,0,.9), transparent 70%);
  opacity: .45;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
}

.skip-link:focus { left: 16px; }

.logo-for-light { display: none; }
html[data-theme="light"] .logo-for-dark { display: none; }
html[data-theme="light"] .logo-for-light { display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(22px) saturate(1.2);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-logo-wrap {
  position: relative;
  width: clamp(150px, 19vw, 238px);
  min-width: 145px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: var(--glow-blue);
  overflow: hidden;
}

.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.22), transparent 48%);
  transform: translateX(-70%);
  animation: shine 7s ease-in-out infinite;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 4px;
  line-height: 1.1;
  min-width: 0;
}

.brand-text span {
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .045em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text small {
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  transition: color .2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--text); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle,
.menu-button {
  cursor: pointer;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .12);
}

.theme-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
}

.theme-toggle span {
  position: absolute;
  transition: transform .25s ease, opacity .25s ease;
  font-size: 1.1rem;
}

html[data-theme="dark"] .theme-toggle .sun { transform: translateY(0); opacity: 1; }
html[data-theme="dark"] .theme-toggle .moon { transform: translateY(28px); opacity: 0; }
html[data-theme="light"] .theme-toggle .sun { transform: translateY(-28px); opacity: 0; }
html[data-theme="light"] .theme-toggle .moon { transform: translateY(0); opacity: 1; }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  padding: 0;
  place-items: center;
  gap: 4px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-button em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: .02em;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,.26), transparent 48%);
  transform: translateX(-110%);
  transition: transform .65s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: translateX(110%); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 58%, white);
  outline-offset: 3px;
}

.btn-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(100deg, var(--blue), var(--blue-2) 42%, var(--orange) 74%, var(--red));
  box-shadow: 0 18px 45px rgba(0, 102, 255, .24), 0 12px 42px rgba(255, 81, 45, .17);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 7vw, 112px) 0 clamp(56px, 8vw, 110px);
}

.section-glow::before {
  content: "";
  position: absolute;
  left: 5vw;
  top: 14%;
  width: 42vw;
  height: 42vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 134, 255, .28), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}

.section-glow::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 0;
  width: 48vw;
  height: 48vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, .24), transparent 62%);
  filter: blur(16px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .22em;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  box-shadow: var(--glow-blue);
}

.hero h1,
.section-head h2,
.split-copy h2,
.support-card h2,
.mode-grid h2,
.contact-info h2,
.legal-hero h1,
.legal-content h2 {
  letter-spacing: -.055em;
  line-height: .95;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 7vw, 6.45rem);
  font-weight: 950;
}

.hero h1::selection, h2::selection, h3::selection, p::selection {
  background: rgba(0, 134, 255, .35);
}

.lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions { margin-bottom: 26px; }

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  backdrop-filter: blur(14px);
  font-size: .91rem;
  font-weight: 750;
}

.hero-badges span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 0 18px rgba(0, 134, 255, .5);
}

.hero-stage {
  position: relative;
  min-height: 640px;
}

.glass-panel,
.service-card,
.control-board,
.support-card,
.support-points article,
.app-card,
.contact-form,
.legal-card,
.legal-content,
.contact-info {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.025)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.2);
}

.logo-hero-panel {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 3;
  border-radius: 30px;
  padding: clamp(16px, 2.4vw, 28px);
  overflow: hidden;
}

.logo-hero-panel::before {
  content: "";
  position: absolute;
  inset: -60% -40%;
  background: conic-gradient(from 90deg, transparent, rgba(0, 134, 255, .26), transparent, rgba(255, 106, 0, .24), transparent);
  animation: spin 12s linear infinite;
  opacity: .52;
}

.logo-hero-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 22px;
  object-fit: contain;
}

.hero-stripe {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent);
  box-shadow: var(--glow-orange);
  z-index: 2;
}

.phone {
  position: absolute;
  z-index: 2;
  width: 248px;
  min-height: 508px;
  border-radius: 38px;
  padding: 16px;
  border: 8px solid color-mix(in srgb, var(--text) 18%, transparent);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42), inset 0 0 0 1px rgba(255,255,255,.12);
}

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 84px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  z-index: 3;
}

.phone-dark {
  left: 24px;
  bottom: 4px;
  background: linear-gradient(180deg, #05070c, #081324 58%, #05070c);
  color: #f5f7fa;
  transform: rotate(-2deg);
}

.phone-light {
  right: 10px;
  bottom: 38px;
  background: linear-gradient(180deg, #fff, #f5f7fa 64%, #eef4ff);
  color: #0b0f16;
  transform: rotate(3deg);
  z-index: 1;
}

.phone-top {
  height: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  font-weight: 800;
  opacity: .86;
}

.phone-top i {
  display: block;
  width: 38px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, currentColor 18%, transparent 18% 32%, currentColor 32% 50%, transparent 50% 64%, currentColor 64%);
  opacity: .75;
}

.phone-logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  margin-top: 4px;
  overflow: hidden;
  box-shadow: var(--glow-blue);
}

.phone-logo img { width: 100%; height: 100%; object-fit: cover; }

.phone h2 {
  margin: 14px 0 4px;
  font-size: 1.55rem;
  letter-spacing: -.04em;
}

.phone p {
  margin-bottom: 12px;
  color: currentColor;
  opacity: .72;
  font-size: .8rem;
}

.metric-card {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  overflow: hidden;
}

.phone-light .metric-card { background: rgba(11,15,22,.045); border-color: rgba(11,15,22,.10); }
.metric-card small { display: block; opacity: .66; font-weight: 900; font-size: .65rem; letter-spacing: .08em; }
.metric-card strong { display: block; margin-top: 8px; font-size: 1.28rem; }
.metric-card span { color: var(--cyan); display: block; margin-top: 7px; font-size: .75rem; font-weight: 900; }
.metric-card .orange { color: var(--red); }
.main-metric { min-height: 116px; position: relative; }
.spark {
  position: absolute;
  right: 12px;
  bottom: 16px;
  width: 82px;
  height: 38px;
  background:
    linear-gradient(135deg, transparent 5%, transparent 26%, var(--blue) 27% 30%, transparent 31% 39%, transparent 40% 49%, var(--cyan) 50% 53%, transparent 54% 60%, transparent 61% 68%, var(--blue) 69% 72%, transparent 73%);
  filter: drop-shadow(0 0 7px rgba(0,134,255,.8));
  opacity: .9;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 9px 0 14px;
}

.metric-grid .metric-card strong { font-size: .92rem; }
.movements b { display: block; font-size: .86rem; margin-bottom: 8px; }
.movements div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .72rem;
}
.movements em { color: var(--cyan); font-style: normal; font-weight: 900; }
.movements .orange { color: var(--red); }
.phone-nav {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.phone-nav span {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  border: 2px solid currentColor;
  opacity: .52;
}
.phone-nav strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--orange), var(--red));
  box-shadow: var(--glow-orange);
  font-size: 1.8rem;
}

.tile-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.tile-list span {
  padding: 12px;
  border-radius: 13px;
  background: rgba(0,134,255,.09);
  border: 1px solid rgba(0,134,255,.18);
  color: #0b58b3;
  font-weight: 900;
  font-size: .86rem;
}

.section {
  position: relative;
  padding: clamp(72px, 8vw, 124px) 0;
}

.section.compact { padding-top: clamp(52px, 6vw, 86px); }

.section-head {
  max-width: 830px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow { justify-content: center; }

.section-head h2,
.split-copy h2,
.support-card h2,
.mode-grid h2,
.contact-info h2,
.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.35rem);
  font-weight: 950;
}

.section-head p,
.split-copy p,
.support-card p,
.mode-grid p,
.contact-info p,
.legal-hero p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

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

.service-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card::before,
.app-card::before,
.control-board::before,
.support-points article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,134,255,.18), transparent 48%);
  opacity: 0;
  transition: opacity .25s ease;
}

.service-card:hover::before,
.app-card:hover::before,
.control-board:hover::before,
.support-points article:hover::before { opacity: 1; }

.service-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 18px;
  border: 1px solid var(--line);
  transform: rotate(45deg);
}

.service-icon span {
  transform: rotate(-45deg);
  font-size: .88rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.service-icon.blue { background: rgba(0,134,255,.15); box-shadow: var(--glow-blue); color: var(--cyan); }
.service-icon.orange { background: rgba(255,106,0,.14); box-shadow: var(--glow-orange); color: var(--orange); }

.service-card h3,
.app-card h3,
.support-points strong {
  position: relative;
  margin-bottom: 10px;
  font-size: 1.28rem;
  letter-spacing: -.03em;
}

.service-card p,
.app-card p,
.support-points p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.split-grid,
.support-grid,
.contact-grid,
.mode-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 16px 13px 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-size: .8rem;
}

.control-board {
  position: relative;
  padding: 24px;
  border-radius: 32px;
  overflow: hidden;
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 950;
  letter-spacing: .16em;
  font-size: .78rem;
}

.board-header small { color: var(--muted); letter-spacing: .08em; }

.control-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}

.control-row strong { font-size: 1.08rem; }
.control-row em {
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, var(--blue), var(--orange));
  font-style: normal;
  font-size: .78rem;
  font-weight: 950;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.stats-row div {
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 10%, rgba(0,134,255,.26), transparent 48%),
    rgba(255,255,255,.055);
}

.stats-row b { display: block; font-size: 1.75rem; }
.stats-row span { color: var(--muted); font-size: .82rem; font-weight: 800; }

.dark-band {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(0, 134, 255, .22), transparent 33rem),
    radial-gradient(circle at 92% 66%, rgba(255, 106, 0, .18), transparent 34rem),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.22));
  border-block: 1px solid var(--line);
}

.support-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
}

.note {
  padding: 16px 18px;
  margin-top: 24px;
  border: 1px solid color-mix(in srgb, var(--orange) 42%, var(--line));
  border-radius: 18px;
  color: var(--text) !important;
  background: color-mix(in srgb, var(--orange) 10%, transparent);
}

.support-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.support-points article {
  position: relative;
  min-height: 136px;
  padding: 22px 24px;
  border-radius: 24px;
  overflow: hidden;
}

.support-points span {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

.app-card {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: start;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
}

.app-icon {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--glow-blue);
}

.app-icon.light { background: #fff; }
.app-icon.orange-bg { background: linear-gradient(135deg, var(--orange), var(--red)); box-shadow: var(--glow-orange); }
.app-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-icon.orange-bg img { width: 76%; height: 76%; object-fit: contain; }

.app-number {
  position: absolute;
  right: 24px;
  top: 26px;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--text) 34%, transparent);
  font-size: 4rem;
  font-weight: 950;
  line-height: 1;
}

.app-card a {
  position: relative;
  width: fit-content;
  margin-top: 20px;
  color: var(--cyan);
  font-weight: 950;
}

.mode-section {
  border-block: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(0,134,255,.08), rgba(255,106,0,.08));
}

.palette {
  display: grid;
  grid-template-columns: repeat(7, minmax(68px, 1fr));
  gap: 12px;
}

.palette span {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 12px 8px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--text) 76%, transparent);
  background: var(--c);
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(0,0,0,.16);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .06em;
}

.contact-section { padding-bottom: clamp(82px, 9vw, 136px); }

.contact-grid {
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.22fr);
}

.contact-info {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-lines div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.contact-lines span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-lines strong { line-height: 1.45; }

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 34px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface-strong) 82%, transparent);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

textarea { resize: vertical; min-height: 134px; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--muted) 74%, transparent); }
input:focus, textarea:focus, select:focus { border-color: color-mix(in srgb, var(--blue) 64%, var(--line)); box-shadow: 0 0 0 4px rgba(0,134,255,.12); }
.form-note { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }

.site-footer {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  align-items: center;
  gap: 24px;
}

.footer-logo { width: min(320px, 100%); margin-bottom: 12px; border-radius: 12px; }
.site-footer p { margin: 0; color: var(--muted); line-height: 1.55; }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-weight: 800; }
.site-footer nav a:hover { color: var(--text); }
.copyright { text-align: right; }

/* Legal pages */
.legal-main { padding: clamp(54px, 7vw, 96px) 0 clamp(80px, 9vw, 130px); }
.legal-hero { max-width: 900px; margin-bottom: 28px; }
.legal-layout { display: grid; grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); gap: 24px; align-items: start; }
.legal-card { position: sticky; top: 108px; padding: 22px; border-radius: 24px; }
.legal-card h2 { margin-bottom: 14px; font-size: 1.2rem; }
.legal-card nav { display: grid; gap: 10px; color: var(--muted); font-weight: 800; }
.legal-card a { padding: 9px 0; border-bottom: 1px solid var(--line); }
.legal-card a:hover { color: var(--text); }
.legal-content { padding: clamp(24px, 4vw, 44px); border-radius: 30px; }
.legal-content section { padding: 16px 0; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { margin-bottom: 12px; font-size: clamp(1.55rem, 2.4vw, 2.3rem); }
.legal-content h3 { margin: 20px 0 8px; }
.legal-content ul { padding-left: 1.25rem; }
.legal-content li + li { margin-top: 8px; }
.legal-content strong { color: var(--text); }
.placeholder { display: inline-flex; padding: 2px 8px; border-radius: 8px; color: #fff; background: linear-gradient(120deg, var(--blue), var(--orange)); font-weight: 900; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .72s ease forwards;
}
.reveal-delay { animation-delay: .14s; }

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

@keyframes shine {
  0%, 45% { transform: translateX(-78%); }
  68%, 100% { transform: translateX(78%); }
}

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

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

@media (max-width: 1120px) {
  .brand-text { display: none; }
  .primary-nav { gap: 14px; font-size: .9rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 660px; max-width: 720px; width: 100%; margin-inline: auto; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .header-inner { min-height: 72px; }
  .menu-button { display: grid; order: 3; }
  .header-actions { margin-left: auto; }
  .btn-header, .btn-small { display: none; }
  .primary-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: color-mix(in srgb, var(--bg) 90%, transparent);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .primary-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .primary-nav a { padding: 15px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }
  .split-grid, .support-grid, .contact-grid, .mode-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .palette { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .palette span { min-height: 110px; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .copyright { text-align: left; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-card { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand-logo-wrap { width: 156px; height: 50px; min-width: 156px; }
  .hero { min-height: auto; padding-top: 42px; }
  .hero h1 { font-size: clamp(2.25rem, 15vw, 4rem); }
  .hero-stage { min-height: 560px; }
  .logo-hero-panel { top: 0; padding: 12px; border-radius: 24px; }
  .logo-hero-panel img { border-radius: 18px; }
  .phone { width: 220px; min-height: 465px; border-width: 6px; border-radius: 34px; padding: 13px; }
  .phone-dark { left: 0; bottom: 0; transform: rotate(-3deg) scale(.92); transform-origin: left bottom; }
  .phone-light { right: 0; bottom: 34px; transform: rotate(3deg) scale(.86); transform-origin: right bottom; }
  .phone h2 { font-size: 1.32rem; }
  .metric-card strong { font-size: 1.05rem; }
  .metric-grid .metric-card strong { font-size: .78rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; }
  .stats-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .palette { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 64px 0; }
  .site-footer nav { display: grid; gap: 8px; }
}

@media (orientation: landscape) and (max-height: 540px) and (max-width: 980px) {
  .hero { min-height: auto; padding-block: 42px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr); }
  .hero h1 { font-size: clamp(2.3rem, 7vw, 4.1rem); }
  .hero-stage { min-height: 520px; transform: scale(.9); transform-origin: center; }
}
.site-header.is-scrolled {
  box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
}


/* Gelat v10 content updates: this keeps the original uploaded design as master. */
.brand-logo,
.footer-logo,
.logo-hero-panel img {
  filter: drop-shadow(0 0 4px rgba(255,255,255,.72)) drop-shadow(0 0 18px rgba(0,134,255,.22));
}

.logo-hero-panel img {
  border-radius: 0;
  padding: 2px;
}

.phone-logo {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.phone-logo img {
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.55)) drop-shadow(0 0 14px rgba(0,134,255,.35));
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .10);
}

.language-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  padding: 0 7px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .06em;
}

.language-switch a.is-active,
.language-switch a:hover,
.language-switch a:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: var(--glow-blue);
}

.mail-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.mail-button,
.app-soon {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 36px;
  padding: 0 12px;
  color: var(--text);
  background: var(--surface-soft);
  font-weight: 900;
  font-size: .82rem;
}

.mail-open {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(110deg, var(--blue), var(--orange), var(--red));
  box-shadow: 0 10px 26px rgba(0, 102, 255, .18), 0 10px 28px rgba(255, 81, 45, .16);
}

.mail-value {
  display: none;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--blue) 38%, transparent);
  color: var(--cyan);
  background: rgba(0, 134, 255, .08);
  font-weight: 900;
  user-select: all;
}

.mail-value.is-visible { display: inline-flex; }
.support-mailline {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.legal-spacer { margin-top: 18px; }

.app-card-construction {
  position: relative;
}

.app-card-construction::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,186,0,.11), transparent 36%, rgba(0,134,255,.09));
  pointer-events: none;
}

.app-card-construction .app-number {
  width: auto;
  min-width: 76px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: .74rem;
}

.app-soon {
  cursor: not-allowed;
  color: var(--muted);
  background: transparent;
}

@media (max-width: 640px) {
  .brand-logo-wrap { width: 112px; min-width: 112px; height: 42px; padding: 2px 4px; }
  .language-switch { padding: 3px; gap: 2px; }
  .language-switch a { min-width: 24px; height: 26px; padding: 0 5px; font-size: .66rem; }
  .theme-toggle, .menu-button { width: 40px; height: 40px; }
  .header-actions { gap: 6px; }
}

@media (max-width: 420px) {
  .language-switch a { min-width: 22px; padding: 0 4px; }
  .brand-logo-wrap { width: 104px; min-width: 104px; }
}


/* V11 KORREKTUR: Design-Freeze = Querformat-iPads, keine Handys. Logos freigestellt, ohne Kasten. */
:root {
  --glass: var(--surface-soft);
  --muted-2: color-mix(in srgb, var(--muted) 72%, transparent);
}
html[data-theme="light"] {
  --glass: var(--surface-soft);
  --muted-2: color-mix(in srgb, var(--muted) 72%, transparent);
}

/* Header / Footer logo: no visible rectangle around logo+writing. */
.brand { gap: 0; }
.brand-text { display: none !important; }
.brand-logo-wrap {
  width: clamp(190px, 24vw, 330px) !important;
  min-width: clamp(190px, 24vw, 330px) !important;
  height: clamp(54px, 6.2vw, 78px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.brand-logo-wrap::after { display: none !important; }
.brand-logo,
.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0 !important;
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,.95))
    drop-shadow(0 0 8px rgba(255,255,255,.42))
    drop-shadow(0 0 18px rgba(0,134,255,.28));
}
.footer-logo { width: min(360px, 100%); height: auto; }

/* Hero logo: completely free-standing, no glass panel, no square box. */
.hero-logo-free {
  position: absolute;
  z-index: 10;
  top: 6px;
  left: 50%;
  width: min(86%, 560px);
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-logo-free img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,.98))
    drop-shadow(0 0 10px rgba(255,255,255,.38))
    drop-shadow(0 0 28px rgba(0,134,255,.30))
    drop-shadow(0 0 30px rgba(255,122,0,.16));
}
.logo-hero-panel,
.logo-hero-panel.glass-panel {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  overflow: visible !important;
}
.logo-hero-panel::before,
.hero-stripe { display: none !important; }
.logo-hero-panel img { border-radius: 0 !important; }

.hero-stage-ipad {
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1250px;
  position: relative;
  overflow: visible;
}
.hero-stage-ipad .phone,
.hero-stage-ipad .phone-dark,
.hero-stage-ipad .phone-light,
.mini-phone-mock { display: none !important; }
.device-lab {
  position: relative;
  width: min(100%, 800px);
  height: 660px;
  isolation: isolate;
  transform-style: preserve-3d;
}
.device-lab::before {
  content: "";
  position: absolute;
  inset: 82px 18px 16px;
  border-radius: 52px;
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(255,255,255,.13) 43%, transparent 55% 100%),
    radial-gradient(circle at 18% 24%, rgba(25,201,255,.30), transparent 34%),
    radial-gradient(circle at 88% 76%, rgba(255,106,0,.25), transparent 34%);
  border: 1px solid rgba(255,255,255,.10);
  opacity: .78;
  z-index: 0;
}
.device-lab::after {
  content: "";
  position: absolute;
  left: 8%; right: 5%; bottom: 0;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.50), transparent 70%);
  filter: blur(15px);
  z-index: 0;
}
.device-halo { position:absolute; border-radius:999px; filter:blur(24px); opacity:.72; z-index:0; }
.halo-blue { width:290px; height:290px; left:0; top:120px; background:rgba(0,134,255,.38); }
.halo-orange { width:250px; height:250px; right:4px; bottom:72px; background:rgba(255,106,0,.34); }
.hero-stage-ipad .tablet-mock {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 112px;
  width: min(68%, 548px);
  min-height: 405px;
  padding: 15px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.045) 18%, rgba(5,9,18,.98) 38%, rgba(8,14,28,.94));
  border: 1px solid rgba(255,255,255,.24);
  box-shadow:
    0 42px 105px rgba(0,0,0,.52),
    0 0 46px rgba(0,134,255,.28),
    0 0 68px rgba(255,106,0,.18),
    inset 0 0 0 2px rgba(255,255,255,.05);
  transform: translateX(-50%) rotateX(4deg) rotateY(-7deg) rotateZ(-2deg);
}
html[data-theme="light"] .hero-stage-ipad .tablet-mock {
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(232,240,253,.95));
  box-shadow: 0 36px 85px rgba(30,60,120,.20), 0 0 44px rgba(0,134,255,.20), 0 0 60px rgba(255,106,0,.13), inset 0 0 0 2px rgba(255,255,255,.52);
}
.hero-stage-ipad .tablet-mock.ipad-primary {
  left: 38%;
  top: 166px;
  width: min(68%, 548px);
  z-index: 6;
}
.hero-stage-ipad .tablet-mock.ipad-secondary {
  left: 70%;
  top: 94px;
  width: min(58%, 455px);
  min-height: 375px;
  z-index: 5;
  transform: translateX(-50%) rotateX(3deg) rotateY(7deg) rotateZ(2deg);
  color: #08101e;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(238,244,255,.96));
  border-color: rgba(255,255,255,.54);
  box-shadow:
    0 34px 88px rgba(0,0,0,.34),
    0 0 42px rgba(0,134,255,.22),
    0 0 54px rgba(255,106,0,.16),
    inset 0 0 0 2px rgba(255,255,255,.55);
}
.hero-stage-ipad .tablet-camera {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.19);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.24);
}
.hero-stage-ipad .ipad-secondary .tablet-camera { background: rgba(8,16,30,.16); }
.hero-stage-ipad .tablet-screen {
  min-height: 386px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 18% 74%, rgba(255,106,0,.08)),
    radial-gradient(circle at 20% 4%, rgba(25,201,255,.30), transparent 30%),
    radial-gradient(circle at 98% 20%, rgba(255,106,0,.22), transparent 30%),
    linear-gradient(180deg, rgba(4,8,17,.96), rgba(9,15,30,.98));
}
.hero-stage-ipad .ipad-secondary .tablet-screen,
.hero-stage-ipad .tablet-screen-light {
  min-height: 346px;
  background:
    radial-gradient(circle at 18% 0%, rgba(0,134,255,.18), transparent 32%),
    radial-gradient(circle at 100% 10%, rgba(255,106,0,.16), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(238,244,255,.98));
  border-color: rgba(8,16,30,.13);
}
.tablet-topbar { display:flex; justify-content:space-between; align-items:center; gap:16px; }
.tablet-brand-mini { display:flex; align-items:center; gap:12px; min-width:0; }
.tablet-brand-mini img { width:48px; filter: drop-shadow(0 0 13px rgba(255,255,255,.34)); }
.tablet-brand-mini strong { display:block; font-size:1.02rem; letter-spacing:-.02em; white-space:nowrap; }
.tablet-brand-mini span { color:var(--muted); font-size:.76rem; letter-spacing:.08em; text-transform:uppercase; white-space:nowrap; }
.hero-stage-ipad .ipad-secondary .tablet-brand-mini strong,
.hero-stage-ipad .ipad-secondary .tablet-hero-line strong,
.hero-stage-ipad .ipad-secondary .light-card strong { color:#08101e; }
.hero-stage-ipad .ipad-secondary .tablet-brand-mini span,
.hero-stage-ipad .ipad-secondary .tablet-hero-line span,
.hero-stage-ipad .ipad-secondary .light-card span { color:#526079; }
.tablet-status { display:flex; gap:5px; align-items:center; }
.tablet-status i { width:8px; height:8px; border-radius:50%; background:linear-gradient(135deg, var(--cyan), var(--orange-2)); box-shadow:0 0 12px rgba(25,201,255,.5); }
.tablet-hero-line { display:grid; grid-template-columns:minmax(0,1fr) 132px; gap:14px; align-items:stretch; }
.tablet-hero-line > div:first-child,
.tablet-score,
.tablet-panel,
.light-card {
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.tablet-hero-line > div:first-child { padding:20px; position:relative; overflow:hidden; }
.tablet-hero-line > div:first-child::after { content:""; position:absolute; right:-30px; bottom:-42px; width:160px; height:160px; border-radius:999px; background:radial-gradient(circle, rgba(25,201,255,.28), transparent 62%); }
.tablet-hero-line small,
.tablet-panel small,
.light-card small { color:var(--muted-2); font-size:.66rem; letter-spacing:.14em; font-weight:900; text-transform:uppercase; }
.tablet-hero-line strong { display:block; margin:7px 0 5px; font-size:clamp(1.7rem, 3.2vw, 2.45rem); letter-spacing:-.055em; }
.tablet-hero-line span { color:var(--cyan); font-size:.91rem; font-weight:850; }
.tablet-score { display:grid; place-items:center; text-align:center; padding:16px 10px; }
.tablet-score b { font-size:2.15rem; background:linear-gradient(90deg, var(--cyan), var(--orange)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.tablet-score span { color:var(--muted); font-size:.76rem; }
.tablet-grid-ui { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.tablet-panel { min-height:104px; padding:16px; overflow:hidden; position:relative; }
.tablet-panel.wide { grid-column:span 2; }
.tablet-panel strong { display:block; font-size:1.32rem; margin:8px 0 4px; }
.tablet-panel span,
.tablet-panel p { color:var(--muted); margin:0; font-size:.86rem; line-height:1.45; }
.orange-panel::after { content:""; position:absolute; inset:auto -34px -44px auto; width:140px; height:140px; border-radius:999px; background:radial-gradient(circle, rgba(255,106,0,.33), transparent 62%); }
.chart-line { height:50px; display:flex; align-items:end; gap:8px; margin:12px 0 10px; }
.chart-line span { flex:1; border-radius:12px 12px 4px 4px; background:linear-gradient(180deg, var(--cyan), var(--blue)); box-shadow:0 0 18px rgba(0,134,255,.25); }
.chart-line span:nth-child(1) { height:34%; }
.chart-line span:nth-child(2) { height:58%; }
.chart-line span:nth-child(3) { height:44%; background:linear-gradient(180deg, var(--orange), var(--orange-2)); }
.chart-line span:nth-child(4) { height:76%; }
.chart-line span:nth-child(5) { height:92%; background:linear-gradient(180deg, var(--orange), var(--blue)); }
.hero-stage-ipad .ipad-secondary .tablet-hero-line,
.hero-stage-ipad .compact-line { grid-template-columns: 1fr; }
.hero-stage-ipad .ipad-secondary .tablet-hero-line > div:first-child,
.hero-stage-ipad .ipad-secondary .light-card { border-color: rgba(8,16,30,.12); background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(232,240,255,.82)); box-shadow: 0 12px 30px rgba(20,45,90,.08), inset 0 1px 0 rgba(255,255,255,.7); }
.light-dashboard-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.light-card { min-height:92px; padding:15px; position:relative; overflow:hidden; }
.light-card.wide { grid-column:span 2; }
.light-card strong { display:block; margin:7px 0 4px; font-size:1.2rem; }
.float-chip {
  position:absolute;
  z-index:8;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:4px 10px;
  min-width:172px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:color-mix(in srgb, var(--surface) 78%, transparent);
  box-shadow:var(--shadow);
  backdrop-filter: blur(18px) saturate(1.2);
}
.float-chip span { grid-row:span 2; width:34px; height:34px; border-radius:12px; display:grid; place-items:center; color:#fff; font-weight:900; background:linear-gradient(135deg, var(--blue), var(--orange-2)); }
.float-chip strong { font-size:.92rem; }
.float-chip em { color:var(--muted); font-size:.74rem; font-style:normal; }
.chip-a { left: 8px; top: 112px; }
.chip-b { left: 24px; bottom: 78px; }
.chip-c { right: 8px; top: 96px; }

@media (max-width: 1180px) {
  .brand-logo-wrap { width: clamp(170px, 22vw, 270px) !important; min-width: clamp(170px, 22vw, 270px) !important; }
}
@media (max-width: 1100px) {
  .hero-stage-ipad { order:-1; min-height:720px; }
  .device-lab { width:min(100%, 820px); height:690px; }
  .hero-logo-free { top: 0; width:min(88%, 540px); }
  .hero-stage-ipad .tablet-mock.ipad-primary { left:37%; top:165px; }
  .hero-stage-ipad .tablet-mock.ipad-secondary { left:69%; top:76px; }
}
@media (max-width: 900px) {
  .brand-logo-wrap { width: 178px !important; min-width: 178px !important; height: 56px !important; }
}
@media (max-width: 760px) {
  .hero-stage-ipad { min-height:800px; }
  .device-lab { height:760px; width:min(100%, 620px); }
  .hero-logo-free { width:min(94%, 430px); }
  .hero-stage-ipad .tablet-mock.ipad-primary { left:50%; top:80px; width:96%; min-height:auto; padding:10px; border-radius:30px; transform:translateX(-50%) rotateX(0) rotateY(0) rotateZ(-1deg); }
  .hero-stage-ipad .tablet-mock.ipad-secondary { left:50%; top:458px; width:90%; min-height:auto; padding:10px; border-radius:28px; transform:translateX(-50%) rotateX(0) rotateY(0) rotateZ(1deg); }
  .hero-stage-ipad .tablet-screen { min-height:auto; border-radius:24px; padding:12px; }
  .tablet-hero-line { grid-template-columns:1fr; }
  .tablet-grid-ui { grid-template-columns:1fr; }
  .tablet-panel.wide { grid-column:auto; }
  .bottom-panel { display:none; }
  .hero-stage-ipad .ipad-secondary .tablet-screen,
  .hero-stage-ipad .tablet-screen-light { min-height:auto; border-radius:22px; padding:12px; }
  .hero-stage-ipad .ipad-secondary .tablet-brand-mini img { width:38px; }
  .hero-stage-ipad .ipad-secondary .tablet-hero-line strong { font-size:1.35rem; }
  .light-dashboard-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .light-card { min-height:78px; padding:12px; }
  .light-card.wide { display:none; }
  .chip-a { left:6px; top:52px; }
  .chip-b { left:8px; bottom:12px; }
  .chip-c { display:none; }
  .float-chip { min-width:154px; padding:10px 12px; border-radius:16px; }
}
@media (max-width: 520px) {
  .brand-logo-wrap { width: 138px !important; min-width: 138px !important; height: 46px !important; }
  .hero-logo-free { top: 8px; width:min(96%, 390px); }
  .tablet-brand-mini span,
  .tablet-status { display:none; }
  .tablet-hero-line strong { font-size:1.55rem; }
  .tablet-score b { font-size:1.75rem; }
  .chart-line { height:38px; }
}
@media (max-width: 430px) {
  .hero-stage-ipad { min-height:780px; }
  .device-lab { height:745px; }
  .hero-stage-ipad .tablet-mock.ipad-primary { top:84px; }
  .hero-stage-ipad .tablet-mock.ipad-secondary { top:450px; width:94%; }
  .hero-stage-ipad .ipad-secondary .tablet-hero-line { display:none; }
  .light-dashboard-grid { grid-template-columns:1fr 1fr; }
  .light-card strong { font-size:1rem; }
}
