:root {
  --bg: #f4f6fb;
  --bg-2: #eef2f8;
  --card: #ffffff;
  --text: #0d1424;
  --muted: #5b6b85;
  --accent: #0066ff;
  --accent-2: #00b3a4;
  --accent-3: #ff7a1a;
  --line: rgba(13, 20, 36, 0.1);
}

html.dark,
body.dark {
  --bg: #060b14;
  --bg-2: #0b1220;
  --card: rgba(10, 16, 26, 0.9);
  --text: #e9f1ff;
  --muted: #9aa8bd;
  --accent: #2bd1ff;
  --accent-2: #00f0b5;
  --accent-3: #4f6bff;
  --line: rgba(255, 255, 255, 0.08);
  --grid-opacity: 0.08;
  --bg-grad-opacity: 0.9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  transition: background-color 0.6s ease, color 0.6s ease;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 20, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 20, 36, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: var(--grid-opacity, 0.12);
  z-index: -1;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 20, 36, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 20, 36, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  z-index: -1;
}

html.dark .bg-grid,
body.dark .bg-grid {
  background-image:
    linear-gradient(rgba(233, 241, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 241, 255, 0.16) 1px, transparent 1px);
  opacity: 0.45;
}

.page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(0, 102, 255, 0.10), transparent 60%),
    radial-gradient(700px 420px at 100% 10%, rgba(0, 179, 164, 0.10), transparent 60%),
    radial-gradient(800px 420px at 50% 100%, rgba(0, 102, 255, 0.08), transparent 60%),
    linear-gradient(160deg, rgba(0, 102, 255, 0.06), transparent 35%, rgba(0, 179, 164, 0.06) 70%, transparent);
  opacity: var(--bg-grad-opacity, 0.6);
  z-index: -2;
}

.hero + main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: 0;
  background: rgba(244, 246, 251, 0.5);
  z-index: -1;
  pointer-events: none;
}

html.dark .hero + main::before,
body.dark .hero + main::before {
  background: rgba(6, 11, 20, 0.5);
}

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

.page {
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

main {
  width: min(1600px, calc(100% - 4vw));
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

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

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-6px);
  }
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(244, 246, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  width: 150px;
  height: 44px;
  background-image: url("ciemne.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
}

html.dark .logo,
body.dark .logo {
  background-image: url("jasne.webp");
}

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

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle svg {
  width: 16px;
  height: 16px;
}

.theme-switch {
  display: flex;
  align-items: center;
}

.checkbox {
  opacity: 0;
  position: absolute;
}

.theme-label {
  background-color: #111;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  position: relative;
  height: 22px;
  width: 42px;
  transform: scale(1);
}

.theme-label .ball {
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 18px;
  width: 18px;
  transform: translateX(0px);
  transition: transform 0.8s ease;
  will-change: transform;
}

.no-switch-anim .theme-label .ball {
  transition: none !important;
}

.checkbox:checked + .theme-label .ball {
  transform: translateX(20px);
}

.theme-label {
  transition: background-color 0.5s ease;
}


.icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  color: currentColor;
}

.icon-moon {
  color: #f1c40f;
}

.icon-sun {
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  background:
    linear-gradient(140deg, rgba(0, 102, 255, 0.08), transparent 40%),
    linear-gradient(20deg, rgba(0, 179, 164, 0.08), transparent 50%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 20, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 20, 36, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 52px;
  padding: 36px 6vw 24px;
  z-index: 1;
}

.hero-copy {
  animation: rise 0.7s ease both;
}

.eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4.1vw, 3.6rem);
  line-height: 1.05;
  margin: 16px 0 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 26px 0 22px;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0, 102, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 102, 255, 0.25);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
  padding: 7px 12px;
}

.btn--text {
  background: transparent;
  color: var(--accent);
  box-shadow: none;
  padding: 0;
}

.hero-actions .btn--text {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

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

.hero-metrics > div {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.stat {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

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

.hero-display {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rise 0.7s ease both;
  animation-delay: 0.12s;
  position: relative;
}

.glass {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 28px 60px rgba(13, 20, 36, 0.16);
  animation: float 3.5s ease-in-out infinite alternate;
}

.glass-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.glass-body {
  margin: 22px 0;
  display: grid;
  gap: 14px;
}

.glass-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}

.ok {
  color: var(--accent-2);
  font-weight: 600;
}

.glass-footer {
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  color: var(--muted);
}

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  color: var(--text);
  margin-top: 18px;
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 48s linear infinite;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 12px 28px;
  white-space: nowrap;
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker-track span {
  color: var(--accent);
}

.section {
  padding: 90px 6vw;
  background: transparent;
}

.section + .section {
  border-top: none;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 12px;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  animation: fadeSlide 0.8s ease both;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.35);
  box-shadow: 0 16px 40px rgba(13, 20, 36, 0.12);
}

.card h3 {
  margin-top: 0;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.card li::before {
  content: "+";
  color: var(--accent);
  margin-right: 8px;
}

.card code {
  font-family: "Space Mono", monospace;
  font-size: 0.88rem;
  color: var(--accent-2);
}

.websites {
  background: transparent;
}

.websites-panel {
  display: grid;
  gap: 24px;
  grid-template-columns: 30% 70%;
  background: var(--card);
  border-radius: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(13, 20, 36, 0.12);
  align-items: stretch;
}

.websites-left,
.websites-col {
  display: grid;
  gap: 2px;
  align-content: start;
  height: 100%;
}

.websites-left h3,
.websites-col h3 {
  margin-top: 0;
  margin-bottom: 2px;
}

.websites-left ul,
.websites-col ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.websites-left ul li:last-child,
.websites-col ul li:last-child {
  margin-bottom: 8px;
}

.websites-left li::before,
.websites-col li::before {
  content: "+";
  color: var(--accent-2);
  margin-right: 8px;
}

.websites-left p,
.websites-col p {
  color: var(--muted);
}

.website-partner {
  margin-top: auto;
  padding-top: 2px;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 8px;
}

.partner-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.website-partner img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.websites-right {
  display: grid;
  gap: 14px;
  align-content: start;
  height: 100%;
}

.preview-head {
  display: grid;
  gap: 8px;
}

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

.preview-shot {
  margin-top: auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: 0 18px 40px rgba(13, 20, 36, 0.12);
}

.preview-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 179, 164, 0.15);
  color: #0d6f66;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

html.dark .nav,
body.dark .nav {
  background: rgba(6, 11, 20, 0.92);
}


html.dark .badge,
body.dark .badge {
  background: rgba(0, 240, 181, 0.18);
  color: #8cf6d7;
}

.process {
  background: transparent;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
}

.step-number {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
}

.stack {
  background: transparent;
}


.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  justify-items: stretch;
}

.pill-grid span {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--card);
  font-size: 0.95rem;
  text-align: center;
}

.cta {
  padding-bottom: 120px;
}

.cta-card {
  border-radius: 26px;
  background: #0b1220;
  color: #eaf1ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 32px;
  box-shadow: 0 24px 60px rgba(13, 20, 36, 0.25);
  animation: fadeSlide 0.8s ease both;
}

.cta-card h2,
.cta-card p {
  color: #eaf1ff;
}

.cta-contact {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-contact .btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #eaf1ff;
  padding: 10px 18px;
}

.cta-form {
  display: grid;
  gap: 16px;
  padding: 0 48px;
}

.cta-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: #b8c6dc;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 9, 16, 0.8);
  color: #eaf1ff;
  font-size: 1rem;
  resize: vertical;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
}

.form-note {
  color: #b8c6dc;
  font-size: 0.85rem;
}

.form-status {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: #b8c6dc;
}

.form-status[data-ok="1"] {
  color: #8ef0c7;
}

.form-status[data-ok="0"] {
  color: #ffb4b4;
}

.consent {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(5, 9, 16, 0.6);
  font-size: 0.85rem;
  color: #c6d5f0;
}

.consent input[type="checkbox"] {
  margin: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  appearance: none;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.consent input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  border: 2px solid transparent;
  border-left-color: #0b1220;
  border-bottom-color: #0b1220;
  transform: rotate(-45deg) translate(1px, -1px);
  top: 4px;
  left: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.consent input[type="checkbox"]:checked {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.consent input[type="checkbox"]:checked::after {
  opacity: 1;
}

.consent span {
  line-height: 1.5;
}

.consent a {
  color: var(--accent-2);
  font-weight: 600;
}


.cta-form input,
.cta-form select,
.cta-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 9, 16, 0.8);
  color: #eaf1ff;
  font-size: 1rem;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
}

.form-note {
  color: #b8c6dc;
  font-size: 0.85rem;
}

.footer {
  padding: 24px 6vw 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.6fr;
  gap: 24px;
  align-items: start;
  background: var(--bg-2);
}

.footer-brand p {
  color: var(--muted);
  max-width: 420px;
}

.footer-title {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: inline-block;
}

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

.footer-links {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.privacy-page .privacy-nav {
  position: static;
  margin-bottom: 40px;
}

.privacy-back {
  gap: 8px;
  font-size: 0.85rem;
}

.privacy {
  padding: 160px 6vw 60px;
  max-width: 960px;
  margin: 0 auto;
}

.privacy-hero {
  margin-bottom: 40px;
}

.privacy-update {
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-section h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

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

.privacy-section li {
  margin-bottom: 10px;
}

.privacy-footer {
  margin-top: 80px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(16px);
  width: min(1080px, calc(100% - 32px));
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 20px 50px rgba(12, 24, 48, 0.2);
  z-index: 40;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0;
  transform-origin: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
}

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

.cookie-link {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.cookie-banner__panel {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}

.cookie-banner__panel[hidden] {
  display: none;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
}

.cookie-option strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.cookie-option p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-option.is-required {
  opacity: 0.7;
}

.cookie-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 auto;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(13, 20, 36, 0.25);
  transition: background 0.3s ease;
}

.cookie-switch span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cookie-switch input:checked + span {
  background: var(--accent);
}

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

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cookie-banner .btn {
  justify-content: center;
}

.cookie-btn {
  border-radius: 14px;
}

.cookie-settings {
  border-color: rgba(13, 20, 36, 0.2);
  color: var(--muted);
  background: transparent;
  box-shadow: none;
  font-weight: 600;
}

.cookie-settings:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-banner .btn.btn--text {
  min-width: auto;
  padding: 0;
  box-shadow: none;
}

.cookie-panel-actions {
  display: flex;
  justify-content: flex-end;
}

.cookie-manage-link {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  text-align: left;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}


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

/* keep switch animation even if reduced motion is enabled */
.theme-label .ball {
  transition: transform 0.8s ease !important;
}

@media (max-width: 900px) {
  .nav {
    padding: 12px 4vw;
  }

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

  .nav-links {
    position: fixed;
    top: 70px;
    left: 4vw;
    right: 4vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(13, 20, 36, 0.2);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 11;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .nav-links a,
  .nav-links .btn {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  html.dark .nav-links,
  body.dark .nav-links {
    background: rgba(6, 11, 20, 0.98);
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    padding-top: 120px;
  }

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

  .cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 5vw;
  }
}

@media (max-width: 980px) {
  .cta-card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

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

  .section {
    padding: 60px 5vw;
  }

  .cta-card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 20px;
  }

  .cookie-banner .btn,
  .cookie-panel-actions .btn {
    min-width: 100%;
  }

  .cookie-option {
    flex-direction: column;
  }

  .cookie-switch {
    align-self: flex-start;
  }
}
.websites-panel,
.card,
.step,
.cta-card,
.pill-grid span,
.footer,
.preview-shot {
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}

.websites-panel,
.card,
.step,
.cta-card,
.pill-grid span,
.footer,
.preview-shot,
.websites-right,
.website-partner img {
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
}
.nav-links.is-open {
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}
