@font-face {
  font-family: "Milker";
  src: url("../fonts/Milker.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

:root {
  --section-space: 8rem;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
  color: #fff;
  background: url("../stuff/fuves_hatter.png") center center / cover no-repeat fixed;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Site header (sticky) ── */

.site-header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  max-width: calc(100% - 2rem);
}

.glass-nav,
.glass-btn,
.download-tab {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.glass-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.55rem 1.75rem 0.55rem 1.1rem;
  border-radius: 999px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: transform 0.2s ease;
}

.nav-logo:hover {
  transform: scale(1.08);
}

.nav-logo img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.75;
}

.download-tab {
  display: inline-block;
  margin-top: -1px;
  padding: 0.5rem 2.5rem 0.7rem;
  min-width: 9rem;
  text-align: center;
  border-radius: 0 0 1.15rem 1.15rem;
  border-top: none;
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  position: relative;
  z-index: 99;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.download-tab.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(0.88);
}

.download-tab:hover:not(.is-hidden) {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(1px);
}

.glass-btn {
  display: inline-block;
  padding: 0.45rem 1.6rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

/* ── Title ── */

.hero-title {
  position: relative;
  z-index: 10;
  font-family: "Milker", system-ui, sans-serif;
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
  user-select: none;
  pointer-events: none;
}

.linux-word {
  position: relative;
  display: inline-block;
}

.tm {
  position: absolute;
  top: 0.15em;
  right: -1.4em;
  font-family: system-ui, sans-serif;
  font-size: 0.18em;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

/* ── Sheep ── */

.sheep-field {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.sheep {
  position: absolute;
  width: 110px;
  height: 110px;
  pointer-events: auto;
  cursor: grab;
  touch-action: none;
  will-change: transform;
}

.sheep.is-dragging {
  cursor: grabbing;
  z-index: 50;
}

.sheep-body {
  width: 100%;
  height: 100%;
  transform-origin: center bottom;
}

.sheep-body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.sheep.is-running .sheep-body {
  animation: sheep-trot 0.35s ease-in-out infinite;
}

.sheep.is-picked-up .sheep-body {
  animation: sheep-sway 0.55s ease-in-out infinite;
  transform-origin: center 20%;
}

.sheep.is-idle .sheep-body {
  animation: sheep-idle 2.5s ease-in-out infinite;
}

@keyframes sheep-trot {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-5px) rotate(-3deg); }
  50%      { transform: translateY(0) rotate(0deg); }
  75%      { transform: translateY(-4px) rotate(3deg); }
}

@keyframes sheep-sway {
  0%, 100% { transform: rotate(-10deg); }
  50%      { transform: rotate(10deg); }
}

@keyframes sheep-idle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-2px) rotate(1deg); }
}

/* ── Scroll hint ── */

.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  color: rgba(255, 255, 255, 0.85);
  animation: bounce-hint 2s ease-in-out infinite;
  transition: opacity 0.2s ease;
}

.scroll-hint:hover {
  opacity: 0.6;
}

@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── Glass card (shared) ── */

.glass-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.glass-card--dark {
  background: rgba(12, 38, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card--light {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card--light:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.14);
}

/* ── About / Tulajdonságok ── */

.about {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-space) 1.5rem;
}

.about-card {
  width: 100%;
  max-width: 52rem;
  padding: 3rem 3.5rem 3.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-logo {
  width: clamp(9rem, 22vw, 13rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}

.about-content {
  width: 100%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-heading {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: left;
  color: #fff;
}

.about-text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.about-highlight {
  color: #5ec8f2;
  font-weight: 600;
}

/* ── Features / Funkciók ── */

.features {
  padding: var(--section-space) 1.5rem var(--section-space);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.features-list {
  width: 100%;
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.5rem;
  padding: 1.5rem 2rem;
  border-radius: 1.25rem;
}

.feature-card.glass-card--dark:hover {
  background: rgba(22, 58, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.feature-card__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(4.5rem, 10vw, 6rem);
  height: clamp(4.5rem, 10vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card--icon-left .feature-card__icon {
  left: 1.75rem;
}

.feature-card--icon-right .feature-card__icon {
  right: 1.75rem;
}

.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.feature-card__text {
  text-align: center;
  max-width: min(36rem, 72%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feature-card__title {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.feature-card__desc {
  font-size: clamp(0.85rem, 1.8vw, 0.98rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

/* ── Arch base ── */

.arch-base {
  padding: var(--section-space) 1.5rem var(--section-space);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.arch-base__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.arch-base__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.arch-base__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.arch-card {
  width: 100%;
  max-width: 52rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 2.5rem;
  border-radius: 1.5rem;
}

.arch-card:hover {
  background: rgba(22, 58, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.arch-card__logo {
  flex-shrink: 0;
  width: clamp(5rem, 14vw, 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-card__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.arch-card__text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

/* ── Apps / Appok ── */

.apps {
  padding: var(--section-space) 1.5rem var(--section-space);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.apps__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 40rem;
  text-align: center;
}

.apps__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.code-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 0.85rem 0.85rem 0.85rem 1.1rem;
  width: 100%;
  max-width: 32rem;
  background: #1d1d1d;
  border-radius: 6px;
  transition: background-color 0.25s ease;
}

.code-block:hover {
  background: #2d2d2d;
}

.code-block__text {
  font-family: "Cascadia Code", "Consolas", "Courier New", monospace;
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.code-block__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.code-block__icon {
  display: block;
}

.code-block__icon--check {
  display: none;
  color: #4ade80;
}

.code-block__copy:hover {
  background: rgba(255, 255, 255, 0.2);
}

.code-block__copy.is-copied .code-block__icon--copy {
  display: none;
}

.code-block__copy.is-copied .code-block__icon--check {
  display: block;
}

.code-block__copy.is-copied {
  background: rgba(74, 222, 128, 0.15);
}

.apps-list {
  width: 100%;
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  background: #1d1d1d;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.app-card:hover {
  background: #2d2d2d;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}

.app-card__icon {
  width: clamp(5.5rem, 14vw, 7.5rem);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  flex-shrink: 0;
  background: #1d1d1d;
  border-radius: 1.25rem 0 0 1.25rem;
  transition: background-color 0.25s ease;
}

.app-card:hover .app-card__icon {
  background: #2d2d2d;
}

.app-card__icon img {
  width: 100%;
  max-width: 4.5rem;
  height: auto;
  object-fit: contain;
}

.app-card__text {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.75rem 1.25rem 0.75rem;
  font-size: clamp(0.85rem, 1.8vw, 0.98rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

/* ── Install / Telepítés ── */

.install {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--section-space) 1.5rem var(--section-space);
  gap: 2.75rem;
}

.install__title {
  font-family: "Milker", system-ui, sans-serif;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: normal;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.install__art {
  position: relative;
  width: clamp(18rem, 48vw, 30rem);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.75rem;
  border-radius: 2.25rem;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  scroll-margin-top: 8rem;
}

.install__art:has(.install__logo-wrap:hover) {
  background: rgba(22, 58, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.24);
}

.install__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92%;
  cursor: default;
}

.install__logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.22));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.install__logo-wrap:hover img {
  transform: translateY(-14px) scale(1.04);
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.28)) brightness(1.08);
}

.install__tm {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
}

.install__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.install__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(18rem, 48vw, 30rem);
  padding: 1.5rem 2.5rem;
  border-radius: 1.35rem;
  text-decoration: none;
  font-family: "Milker", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: normal;
  letter-spacing: 0.08em;
  color: #fff;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease;
}

.install__btn:active:not(.is-disabled) {
  transform: scale(0.98);
}

.install__btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.install__btn--secondary {
  font-size: clamp(1.35rem, 3.5vw, 2.1rem);
  padding: 1.15rem 2rem;
}

.install__btn-text {
  position: relative;
  z-index: 1;
}

.install__btn-shine {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.install__btn-shine::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -80%;
  width: 55%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.55) 52%,
    rgba(255, 255, 255, 0.08) 70%,
    transparent 100%
  );
  transform: skewX(-18deg);
  filter: blur(0.5px);
}

.install__btn.is-shining .install__btn-shine {
  opacity: 1;
}

.install__btn.is-shining .install__btn-shine::before {
  animation: glass-shine 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes glass-shine {
  0% {
    left: -80%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    left: 160%;
    opacity: 0;
  }
}

/* ── Install guide / Telepítés ── */

.guide {
  padding: var(--section-space) 1.5rem var(--section-space);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.guide__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.guide__title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.guide__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
}

.guide__steps {
  width: 100%;
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.guide__steps::before {
  content: "";
  position: absolute;
  left: 1.65rem;
  top: 2.5rem;
  bottom: 2.5rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.2) 15%,
    rgba(255, 255, 255, 0.2) 85%,
    rgba(255, 255, 255, 0.05)
  );
  pointer-events: none;
}

.guide-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem 2rem 1.75rem 1.5rem;
  border-radius: 1.35rem;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.guide-step:hover {
  background: rgba(22, 58, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.guide-step__badge {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 3.3rem;
  height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.guide-step__content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.guide-step__title {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.guide-step__lead {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.guide-list,
.guide-ordered {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-left: 1.15rem;
  font-size: clamp(0.9rem, 1.9vw, 1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.guide-list {
  list-style: disc;
}

.guide-list__note {
  list-style: none;
  margin-left: -1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92em;
}

.guide-ordered {
  list-style: decimal;
  gap: 0.65rem;
}

.guide-sublist {
  margin-top: 0.45rem;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  list-style: circle;
  color: rgba(255, 255, 255, 0.85);
}

.guide-callout {
  padding: 0.85rem 1.1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.guide-callout__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.guide-inline-code {
  font-family: "Cascadia Code", "Consolas", "Courier New", monospace;
  font-size: 0.9em;
  padding: 0.15em 0.45em;
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.25);
  color: #7ee0a8;
  white-space: nowrap;
}

.guide-kbd {
  display: inline-block;
  font-family: "Cascadia Code", "Consolas", "Courier New", monospace;
  font-size: 0.82em;
  padding: 0.15em 0.45em;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1.4;
}

.guide-shortcuts {
  width: 100%;
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.guide-shortcuts__title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.guide-table-wrap {
  padding: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.guide-table-wrap:hover {
  background: rgba(22, 58, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
}

.guide-table thead {
  background: rgba(0, 0, 0, 0.2);
}

.guide-table th {
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.guide-table td {
  padding: 0.8rem 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: middle;
}

.guide-table tbody tr:last-child td {
  border-bottom: none;
}

.guide-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}

.guide-table td:first-child {
  width: 42%;
  white-space: nowrap;
}

.guide-super {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem 2.5rem;
  border-radius: 1.25rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.guide-super:hover {
  background: rgba(22, 58, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
}

.guide-super__icon {
  width: clamp(2.5rem, 6vw, 3.5rem);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.guide-super__eq {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.guide-super__label {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}

/* ── Warning / Grafikus felület ── */

.warning {
  padding: var(--section-space) 1.5rem var(--section-space);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.warning__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.warning__title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
}

.warning__alert {
  display: inline-block;
  padding: 0.45rem 1.35rem;
  border-radius: 0.5rem;
  background: #c62828;
  border: 2px solid #ef5350;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  box-shadow: 0 4px 24px rgba(198, 40, 40, 0.55);
}

.warning__intro {
  width: 100%;
  max-width: 52rem;
  padding: 1.75rem 2rem;
  border-radius: 1.35rem;
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.warning__intro:hover {
  background: rgba(22, 58, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
}

.warning-highlight {
  color: #5ec8f2;
  font-weight: 600;
}

.warning__cards {
  width: 100%;
  max-width: 52rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .warning__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.warning-card {
  padding: 1.5rem 1.35rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.warning-card:hover {
  background: rgba(22, 58, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.warning-card__title {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.warning-card__text {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.warning__tip {
  width: 100%;
  max-width: 52rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  font-size: clamp(0.9rem, 1.9vw, 1.02rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.warning__tip:hover {
  background: rgba(22, 58, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
}

.warning__tip strong {
  color: #fff;
}

/* ── Footer ── */

.site-footer {
  background: url("../stuff/fold_alatt_hatter.png") center center / cover no-repeat;
  padding: var(--section-space) 1.5rem 3.5rem;
}

.site-footer__inner {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.site-footer__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.site-footer__lead {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
}

.site-footer__links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__links a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.9vw, 1rem);
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  border-radius: 0.65rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-block;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer__links a:hover {
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.site-footer__quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.site-footer__quick-label {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__quick ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.site-footer__quick a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer__quick a:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.site-footer__brands {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
}

.site-footer__grass-logo {
  width: clamp(2.5rem, 6vw, 3.25rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.site-footer__brand-link {
  display: inline-block;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__brand-link:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

.site-footer__brand-logo {
  width: clamp(8rem, 22vw, 11rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

/* ── Responsive ── */

/* ── Scroll reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal--from-left {
  transform: translateX(-2.25rem);
}

.reveal--from-right {
  transform: translateX(2.25rem);
}

.reveal--scale {
  transform: translateY(1.5rem) scale(0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 5rem;
  }

  .site-header {
    top: 1rem;
  }

  .glass-nav {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    border-radius: 1.5rem;
  }

  .download-tab {
    font-size: 1rem;
    padding: 0.45rem 2rem 0.65rem;
    min-width: 7.5rem;
    border-radius: 0 0 1rem 1rem;
    margin-top: -1px;
  }

  .download-tab:hover:not(.is-hidden) {
    transform: translateY(1px);
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .sheep {
    width: 80px;
    height: 80px;
  }

  .tm {
    right: -1.6em;
  }

  .about {
    padding: var(--section-space) 1rem;
  }

  .about-card {
    padding: 2.25rem 1.5rem 2.5rem;
    border-radius: 1.5rem;
    gap: 1.5rem;
  }

  .about-heading {
    text-align: center;
  }

  .features {
    padding: var(--section-space) 1rem;
    gap: 2rem;
  }

  .features-list {
    gap: 1rem;
  }

  .feature-card {
    flex-direction: column;
    min-height: auto;
    padding: 1.25rem 1.25rem 1.5rem;
    gap: 0.75rem;
  }

  .feature-card__icon {
    position: static;
    transform: none;
    width: 4rem;
    height: 4rem;
  }

  .feature-card__text {
    max-width: 100%;
  }

  .arch-base {
    padding: var(--section-space) 1rem;
    gap: 1.5rem;
  }

  .arch-card {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.5rem;
    gap: 1.25rem;
  }

  .arch-card__text {
    text-align: center;
  }

  .apps {
    padding: var(--section-space) 1rem;
    gap: 2rem;
  }

  .code-block {
    border-radius: 6px;
    padding: 0.85rem 0.85rem 0.85rem 1rem;
    max-width: 100%;
  }

  .code-block__text {
    white-space: normal;
    word-break: break-all;
    text-align: left;
  }

  .app-card {
    grid-template-columns: 1fr;
    border-radius: 1.25rem;
  }

  .app-card__icon {
    width: 100%;
    aspect-ratio: auto;
    min-height: 5rem;
    border-radius: 1.25rem 1.25rem 0 0;
    padding: 1rem;
  }

  .app-card__icon img {
    max-width: 3.5rem;
  }

  .app-card__text {
    padding: 1rem 1.25rem 1.25rem;
    text-align: center;
  }

  .install {
    padding: var(--section-space) 1rem;
    gap: 2rem;
  }

  .install__art {
    border-radius: 1.75rem;
    padding: 2rem;
    width: min(92vw, 22rem);
  }

  .install__btn {
    border-radius: 1.15rem;
    padding: 1.25rem 1.75rem;
    width: min(92vw, 22rem);
  }

  .guide {
    padding: var(--section-space) 1rem;
    gap: 2.25rem;
  }

  .guide__steps::before {
    display: none;
  }

  .guide-step {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.35rem 1.25rem;
  }

  .guide-step__badge {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.15rem;
  }

  .guide-table td:first-child {
    width: auto;
    white-space: normal;
  }

  .guide-table th,
  .guide-table td {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }

  .guide-super {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .warning {
    padding: var(--section-space) 1rem;
    gap: 1.5rem;
  }

  .warning__intro,
  .warning__tip {
    padding: 1.35rem 1.25rem;
  }

  .site-footer {
    padding: var(--section-space) 1rem 2.5rem;
  }

  .site-footer__brands {
    padding-top: 1rem;
  }
}
