:root {
  --bg-warm: #faf2e6;
  --bg-cream: #fff7eb;
  --bg-soft: #fdfaf5;
  --ink: #1f1b16;
  --muted: #5f554a;
  --accent-rose: #ff7aa2;
  --accent-sun: #ffc670;
  --accent-mint: #a5e8c2;
  --accent-blue: #6bb6ff;
  --link: #b33a5f;
  --link-hover: #8f284b;
  --pill-primary-text: #1f1b16;
  --badge-bg: rgba(255, 122, 162, 0.18);
  --badge-text: #7d2440;
  --badge-border: rgba(125, 36, 64, 0.25);
  --border: rgba(31, 27, 22, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  color-scheme: light;
}

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

html, body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Avenir Next", "Nunito", "Segoe UI Rounded", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 10%, #fffaf2 0, #fffdf8 30%, #ffffff 70%) fixed;
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

main a:not(.pill):not(.nav-link):not(.hub-tile) {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

main a:not(.pill):not(.nav-link):not(.hub-tile):hover {
  color: var(--link-hover);
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-rose);
  color: var(--pill-primary-text);
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Enhanced focus styles */
*:focus-visible {
  outline: 3px solid var(--accent-rose);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent-rose);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(31, 27, 22, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-sun));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(255, 122, 162, 0.35);
}

.brand-name {
  font-weight: 800;
  font-size: 16px;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: transform 150ms ease, color 150ms ease, background 150ms ease;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(255, 122, 162, 0.08);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 25;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

.lang-switch {
  display: inline-flex;
  background: rgba(31, 27, 22, 0.05);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(31, 27, 22, 0.04);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.lang-btn.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.pill.primary {
  background: linear-gradient(120deg, var(--accent-rose), var(--accent-sun));
  color: var(--pill-primary-text);
  box-shadow: 0 10px 30px rgba(255, 122, 162, 0.35);
}

.pill.secondary {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.16);
  color: #111827;
}

.app-card .pill.secondary {
  color: #111827;
}

.pill.ghost {
  background: transparent;
  border-color: rgba(31, 27, 22, 0.12);
}

.pill.todo {
  opacity: 0.7;
  cursor: not-allowed;
}

.pill:not(.todo):hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  padding: 80px 28px 40px;
  align-items: center;
  background: radial-gradient(circle at 0% 0%, rgba(255, 238, 218, 0.8), transparent 55%), radial-gradient(circle at 80% 20%, rgba(166, 232, 194, 0.4), transparent 40%), linear-gradient(135deg, #fffaf2, #ffffff);
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
}

.hero-cta {
  margin: 18px 0 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-points {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--badge-text);
  border: 1px solid var(--badge-border);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-media {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.device {
  background: #fff;
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 27, 22, 0.08);
  width: min(100%, 520px);
}

.device-small {
  position: absolute;
  bottom: -32px;
  right: 12px;
  width: 220px;
  animation: float 6s ease-in-out infinite;
}

.floating {
  box-shadow: 0 14px 30px rgba(107, 182, 255, 0.35);
}

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

.section {
  padding: 60px 28px;
  background: var(--bg-soft);
}

.section:nth-of-type(even) {
  background: #ffffff;
}

main.section {
  display: grid;
  gap: 18px;
  justify-items: center;
}

main.section > * {
  width: min(100%, 960px);
}

main.section .section-header {
  margin-bottom: 0;
}

main.section .card {
  display: grid;
  gap: 12px;
}

main.section .card h3 {
  margin: 0;
}

.section-header {
  margin-bottom: 26px;
}

.section h2 {
  margin: 6px 0;
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: -0.01em;
}

.section p {
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

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

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.card.highlight {
  background: linear-gradient(150deg, rgba(255, 238, 218, 0.9), #fff);
}

.card.highlight.alt {
  background: linear-gradient(150deg, rgba(165, 232, 194, 0.35), #fff);
}

.card.muted {
  background: linear-gradient(130deg, #ffffff, #f8f5f0);
  border-style: dashed;
}

.two-col {
  background: radial-gradient(circle at 10% 10%, rgba(255, 238, 218, 0.5), transparent 40%), radial-gradient(circle at 90% 20%, rgba(165, 232, 194, 0.4), transparent 40%), #fff;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 300px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.gallery-card {
  background: #fff;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
}

.gallery-card figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  align-items: center;
}

.privacy-card {
  background: linear-gradient(160deg, #ffffff, var(--bg-cream));
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(31, 27, 22, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.privacy-card ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.footer {
  padding: 32px 28px;
  background: linear-gradient(135deg, #fff6ea, #ffffff);
  border-top: 1px solid rgba(31, 27, 22, 0.06);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
}

.page-hub .footer {
  background: linear-gradient(135deg, #0c1118, #101622);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hub .footer .brand-name {
  color: #f8fafc;
}

.page-hub .footer p {
  color: #e2e8f0;
}

.page-hub .footer-links a {
  color: #cbd5f5;
}

.page-hub .footer-contact a {
  color: #f8fafc;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 700;
}

/* Language visibility */
[data-lang] { display: none; }
.lang-de [data-lang="de"] { display: revert; }
.lang-en [data-lang="en"] { display: revert; }

@media (max-width: 900px) {
  .topbar {
    position: sticky;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-link {
    padding: 14px;
    text-align: center;
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 60px;
  }
  .topbar {
    padding: 14px 18px;
  }
}


.page-hub {
  position: relative;
  isolation: isolate;
  background: radial-gradient(circle at 10% -20%, rgba(245, 158, 25, 0.25), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(107, 182, 255, 0.12), transparent 45%),
    #070b12;
  color: #f4f7ff;
}

.page-hub::before,
.page-hub::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page-hub::before {
  background: radial-gradient(circle at 20% 10%, rgba(83, 187, 255, 0.25), transparent 40%);
}

.page-hub::after {
  background: radial-gradient(circle at 85% 15%, rgba(255, 162, 86, 0.2), transparent 45%);
}

.page-hub .section {
  color: #111827;
}

.page-hub .section h2 {
  color: #0f172a;
}

.page-hub .section p {
  color: #4b5563;
}

.page-hub .section .eyebrow {
  color: #6b7280;
}

.page-hub .pill.secondary {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.22);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.25);
}

.hub-hero {
  padding: 72px 28px 44px;
  background: linear-gradient(145deg, rgba(13, 19, 32, 0.94), rgba(8, 12, 20, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.hub-hero .eyebrow {
  color: #d3dbe8;
}

.hub-hero .pill.secondary {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.28);
}

.hub-hero .pill.secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.32);
}
.hub-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hub-copy h1 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
  color: #fdfefe;
}

.hero-summary {
  margin: 6px 0;
  font-weight: 600;
  color: #f1f5ff;
  max-width: 640px;
}

.hero-summary--ausmal {
  color: #d0e2ff;
}

.hero-summary--remed {
  color: #9fe8c6;
}

.hero-summary--cyclr {
  color: #ffcf78;
}

.mini-points {
  color: #e2e8f0;
  font-size: 14px;
}

.hub-hero .mini-points {
  color: #eef2f7;
}

.hub-showcase {
  display: grid;
  gap: 16px;
}

.hub-tiles {
  display: grid;
  gap: 14px;
}

.hub-tile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(18, 24, 36, 0.95), rgba(10, 14, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: lift-in 0.55s ease both;
}

.hub-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.55);
}

.hub-tile:nth-child(2) {
  animation-delay: 0.08s;
}

.hub-tile:nth-child(3) {
  animation-delay: 0.16s;
}

.hub-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: #10151f;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.hub-tile__title {
  font-weight: 700;
  font-size: 18px;
  color: #f8fbff;
}

.hub-tile__meta {
  color: #d6dcea;
  font-size: 13px;
}

.hub-tile__status {
  display: flex;
  align-items: center;
}

.hub-status-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hub-status-pill.is-live {
  color: #1be7b6;
  border-color: rgba(27, 231, 182, 0.4);
  background: rgba(27, 231, 182, 0.12);
}

.hub-tile--remed {
  border-color: rgba(113, 214, 174, 0.45);
}

.hub-tile--ausmal {
  border-color: rgba(107, 182, 255, 0.45);
}

.hub-tile--cyclr {
  border-color: rgba(245, 158, 25, 0.45);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  padding: 52px 28px 80px;
}

.app-card {
  background: linear-gradient(140deg, rgba(13, 17, 26, 0.95), rgba(9, 11, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 34px 24px 28px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.55);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #f8fbff;
  position: relative;
}

.app-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-card__identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-card__status {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.app-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  background: #0b0f14;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.app-title {
  margin: 0;
  font-size: 22px;
  color: #f9fbff;
}

.app-tagline,
.app-desc {
  margin: 0;
  color: rgba(236, 242, 250, 0.94);
  line-height: 1.55;
}

.app-tagline {
  font-size: 15px;
  font-weight: 600;
}

.app-desc {
  font-size: 15px;
}

.app-points {
  list-style: none;
  padding-left: 0;
  color: rgba(238, 244, 252, 0.96);
  display: grid;
  gap: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.app-points li::before {
  content: "• ";
  color: #f59e19;
}

.app-status {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.app-status--live {
  color: #17e2b0;
  border-color: rgba(23, 226, 176, 0.4);
  background: rgba(23, 226, 176, 0.12);
}

.app-status--soon {
  color: #f59e19;
  border-color: rgba(245, 158, 25, 0.35);
  background: rgba(245, 158, 25, 0.1);
}

.app-card--warm {
  background: linear-gradient(135deg, rgba(24, 31, 41, 0.95), rgba(14, 18, 26, 0.95));
}

.app-card--dark {
  background: linear-gradient(135deg, rgba(12, 16, 23, 0.95), rgba(8, 11, 17, 0.95));
  border-color: rgba(245, 158, 25, 0.5);
}

.app-card--mint {
  background: linear-gradient(135deg, rgba(15, 24, 26, 0.95), rgba(9, 16, 18, 0.98));
  border-color: rgba(83, 214, 166, 0.5);
}

.app-card--mint .pill.primary {
  background: linear-gradient(120deg, #30b37a, #8ce0b0);
  color: #0b1411;
  box-shadow: 0 12px 30px rgba(48, 179, 122, 0.35);
}

.app-card--dark .pill.primary {
  background: linear-gradient(120deg, #f59e19, #fcbe4a);
  color: #0e1217;
  box-shadow: 0 12px 30px rgba(245, 158, 25, 0.3);
}

.app-card--dark .pill.secondary,
.app-card--mint .pill.secondary,
.app-card--warm .pill.secondary {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.22);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
}

.app-card--dark .pill.secondary:hover,
.app-card--mint .pill.secondary:hover,
.app-card--warm .pill.secondary:hover {
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.26);
}

.app-media {
  display: none;
}

.feature-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lift-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hub-hero,
.app-card {
  animation: rise-in 0.6s ease both;
}
.remed-hero {
  background: radial-gradient(circle at 10% 0%, rgba(140, 224, 176, 0.2), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(90, 210, 160, 0.15), transparent 45%),
    linear-gradient(135deg, #f4faf6, #ffffff);
}

.remed-device {
  display: grid;
  gap: 14px;
  background: linear-gradient(140deg, #ffffff, #f1f8f4);
}

.remed-device__header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.remed-device__header img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(48, 179, 122, 0.25);
}

.remed-device__title {
  margin: 0;
  font-weight: 700;
}

.remed-device__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.remed-device__list {
  display: grid;
  gap: 8px;
}

.remed-chip {
  background: #ffffff;
  border: 1px solid rgba(48, 179, 122, 0.16);
  color: #1a2b22;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(16, 26, 21, 0.08);
}

.theme-remed {
  --bg-warm: #f4faf6;
  --bg-cream: #f9fffc;
  --bg-soft: #f7fbf9;
  --ink: #14251c;
  --muted: #4d6a5b;
  --accent-rose: #30b37a;
  --accent-sun: #8ce0b0;
  --accent-mint: #5fd9a0;
  --accent-blue: #6bb6ff;
  --link: #1f6b49;
  --link-hover: #155238;
  --pill-primary-text: #0b1411;
  --badge-bg: rgba(48, 179, 122, 0.18);
  --badge-text: #1f6b49;
  --badge-border: rgba(31, 107, 73, 0.3);
  --border: rgba(20, 37, 28, 0.1);
  --shadow: 0 24px 60px rgba(30, 74, 56, 0.2);
  color-scheme: light;
  background: radial-gradient(circle at 10% 10%, #f5fff9 0, #ffffff 60%, #f7fbf9 100%) fixed;
}

.theme-remed .topbar {
  background: rgba(245, 255, 249, 0.82);
  border-bottom: 1px solid rgba(20, 37, 28, 0.06);
}

.theme-remed .nav-link:hover {
  background: rgba(48, 179, 122, 0.12);
}

.theme-remed .pill.primary {
  background: linear-gradient(120deg, #30b37a, #8ce0b0);
  box-shadow: 0 12px 30px rgba(48, 179, 122, 0.3);
}

.theme-cyclr {
  --bg-warm: #0e1217;
  --bg-cream: #171b22;
  --bg-soft: #10141a;
  --ink: #f0f4f9;
  --muted: #a2adbc;
  --accent-rose: #f59e19;
  --accent-sun: #fcbe4a;
  --accent-mint: #35d0a3;
  --accent-blue: #6bb6ff;
  --link: #ffcf78;
  --link-hover: #ffe1ad;
  --pill-primary-text: #1a1205;
  --badge-bg: rgba(245, 158, 25, 0.22);
  --badge-text: #fff1d8;
  --badge-border: rgba(245, 158, 25, 0.45);
  --border: rgba(240, 244, 249, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
  background: radial-gradient(circle at 12% 8%, #1f252f 0, #0e1217 45%, #0b0f14 100%) fixed;
}

.theme-cyclr .topbar {
  background: rgba(14, 18, 23, 0.85);
  border-bottom: 1px solid rgba(240, 244, 249, 0.08);
}

.theme-cyclr .nav-link {
  color: var(--muted);
}

.theme-cyclr .nav-link:hover {
  color: var(--ink);
  background: rgba(245, 158, 25, 0.12);
}

.theme-cyclr .hamburger span {
  background: var(--ink);
}

.theme-cyclr .lang-switch {
  background: rgba(240, 244, 249, 0.06);
  border-color: rgba(240, 244, 249, 0.08);
}

.theme-cyclr .lang-btn.is-active {
  background: rgba(240, 244, 249, 0.12);
  color: var(--ink);
}

.theme-cyclr .pill.primary {
  background: linear-gradient(120deg, #f59e19, #fcbe4a);
  color: #0e1217;
  box-shadow: 0 12px 30px rgba(245, 158, 25, 0.35);
}

.theme-cyclr .pill.secondary,
.theme-cyclr .pill.ghost {
  background: #10141a;
  border-color: #2a3242;
  color: var(--ink);
}

.theme-cyclr .badge {
  background: var(--badge-bg);
  color: var(--badge-text);
  border-color: var(--badge-border);
}

.theme-cyclr .hero {
  background: radial-gradient(circle at 10% 10%, rgba(245, 158, 25, 0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(107, 182, 255, 0.2), transparent 45%),
    linear-gradient(135deg, #0e1217, #10141a);
}

.theme-cyclr .device {
  background: #0f141b;
  border-color: #2a3242;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.theme-cyclr .section:nth-of-type(even) {
  background: #171b22;
}

.theme-cyclr .card,
.theme-cyclr .gallery-card,
.theme-cyclr .screen-card {
  background: #151a22;
  border-color: #2a3242;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.theme-cyclr .footer {
  background: #0b0f14;
  border-top: 1px solid #2a3242;
}

.theme-cyclr .footer-links a {
  color: var(--muted);
}

.theme-cyclr .footer-contact a {
  color: var(--ink);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.screen-card {
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.screen-card figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hub-hero {
    padding-top: 70px;
  }

  .theme-cyclr .nav {
    background: rgba(14, 18, 23, 0.98);
    border-bottom: 1px solid #2a3242;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  }
}
