:root {
  --bg-dark: #0a0a0f;
  --bg-card: rgba(18, 18, 28, 0.85);
  --bg-light: #12121a;
  --accent-blue: #4da6ff;
  --accent-purple: #8b5cf6;
  --accent-mid: #6d7ee8;
  --text: #e8e8ef;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.06);
  --gradient-hero: linear-gradient(145deg, #0a0a0f 0%, #0f1225 25%, #151530 50%, #1a0f28 75%, #0d0a18 100%);
  --gradient-glow: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(77, 166, 255, 0.35), transparent 55%), radial-gradient(ellipse 70% 50% at 85% 40%, rgba(139, 92, 246, 0.28), transparent 50%);
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --space: 1.5rem;
  --radius: 12px;
  --radius-lg: 20px;
}

body.theme-light {
  --bg-dark: #f0f0f5;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-light: #e5e5ec;
  --text: #1a1a24;
  --text-muted: #4a4a5c;
  --border: rgba(0, 0, 0, 0.08);
  --gradient-hero: linear-gradient(145deg, #f0f0f5 0%, #e8ecf5 40%, #ebe5f0 70%, #f2eef8 100%);
  --gradient-glow: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(77, 166, 255, 0.18), transparent 55%), radial-gradient(ellipse 70% 50% at 85% 40%, rgba(139, 92, 246, 0.12), transparent 50%);
}

body.theme-light .skip-link {
  color: #1a1a24;
}

body.theme-light .noise {
  opacity: 0.02;
}

body.theme-light {
  background: linear-gradient(180deg, #e8e8f0 0%, var(--bg-dark) 100%);
}

body.theme-light .header {
  background: #f0f0f5;
  backdrop-filter: none;
  border-bottom-color: var(--border);
}

body.theme-light .hero__bg {
  background: linear-gradient(145deg, #f0f0f5 0%, #e8ecf5 40%, #ebe5f0 70%, #f2eef8 100%);
}

body.theme-light .hero__bg::after {
  background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(77, 166, 255, 0.18), transparent 55%), radial-gradient(ellipse 70% 50% at 85% 40%, rgba(139, 92, 246, 0.12), transparent 50%);
}

body.theme-light .hero__headline,
body.theme-light .hero__tag-desc {
  color: #1a1a24;
}

body.theme-light .hero__sub {
  color: #4a4a5c;
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1001;
  padding: 0.75rem 1rem;
  background: var(--accent-blue);
  color: #0a0a0f;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, #0c0c14 0%, #0a0a0f 30%, #0a0a0f 100%);
  min-height: 100vh;
  overflow-x: hidden;
  font-display: swap;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  position: relative;
  z-index: 101;
  pointer-events: auto;
}

.header__logo img {
  height: 56px;
  width: auto;
  max-width: 320px;
  display: block;
  object-fit: contain;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  white-space: nowrap;
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav {
  display: flex;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .header__tools {
    flex-shrink: 0;
  }

  .nav {
    position: absolute;
    left: 320px;
    right: 12rem;
    top: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    background: none;
    pointer-events: none;
  }

  .nav .nav__link {
    pointer-events: auto;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .header__tools {
    flex-shrink: 0;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    isolation: isolate;
    background-color: #0a0a0f;
    pointer-events: auto;
  }

  body.theme-light .nav {
    background-color: #f0f0f5;
    backdrop-filter: none;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    color: var(--text);
    position: relative;
    z-index: 1;
    display: block;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
  }

  .nav__link.is-active {
    color: var(--accent-blue);
  }

  .nav__link.is-active::after {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--accent-blue);
    border-radius: 0 2px 2px 0;
  }

  .nav__link:last-of-type {
    border-bottom: none;
  }

  .nav__lang-in-drawer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
  }

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

  .lang-switch--header {
    display: none;
  }

  body.menu-open .header-wrap {
    z-index: 10001;
  }

  .header {
    z-index: 10000;
  }

  .burger {
    display: flex !important;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 9998;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  body.menu-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .header-wrap {
    z-index: 10001;
  }

  .header {
    z-index: 10000;
  }

  body.menu-open {
    overflow: hidden;
  }
}

.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  position: relative;
}

.nav__link:hover {
  color: var(--accent-blue);
}

.nav__link.is-active {
  color: var(--accent-blue);
}

.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 1px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.lang-switch {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.lang-switch--header {
  flex-shrink: 0;
}

.nav__lang-in-drawer {
  display: none;
}

.lang-switch__btn {
  min-width: 2.75rem;
  min-height: 2.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.lang-switch__btn:hover {
  color: var(--text);
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.1);
}

.lang-switch__btn:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.lang-switch__btn.is-active {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
  background: rgba(77, 166, 255, 0.15);
}

body.theme-light .lang-switch__btn {
  background: rgba(0, 0, 0, 0.04);
}

body.theme-light .lang-switch__btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

body.theme-light .lang-switch__btn.is-active {
  background: rgba(77, 166, 255, 0.12);
}

.theme-switch {
  display: flex;
  gap: 0.25rem;
}

.theme-switch__btn {
  padding: 0.35rem 0.5rem;
  font-size: 1rem;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.theme-switch__btn:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.theme-switch__btn[aria-pressed="true"] {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
  background: rgba(77, 166, 255, 0.1);
}

.theme-switch__icon {
  display: inline-block;
}

body.lang-en [data-lang="pl"]:not(.lang-switch__btn) {
  display: none !important;
}

body.lang-pl [data-lang="en"]:not(.lang-switch__btn) {
  display: none !important;
}

.nav-overlay {
  display: none;
}

@media (max-width: 768px) {
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 9998;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  body.menu-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    isolation: isolate;
    background-color: #0a0a0f;
  }

  body.theme-light .nav {
    background-color: #f0f0f5;
    backdrop-filter: none;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    color: var(--text);
    position: relative;
    z-index: 1;
    display: block;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
  }

  .nav__link.is-active {
    color: var(--accent-blue);
  }

  .nav__link.is-active::after {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--accent-blue);
    border-radius: 0 2px 2px 0;
  }

  .nav__link:last-of-type {
    border-bottom: none;
  }

  .nav__lang-in-drawer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
  }

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

  .lang-switch--header {
    display: none;
  }

  body.menu-open .header-wrap {
    z-index: 10001;
  }

  .header {
    z-index: 10000;
  }

  .burger {
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
  }

  .lang-switch__btn--drawer {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border);
  }

  .lang-switch__btn--drawer.is-active {
    background: rgba(77, 166, 255, 0.2);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
  }

  .header__logo-text {
    font-size: 0.9rem;
  }

}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section--light {
  background: var(--bg-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.section__note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__logo {
  max-width: 360px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 40px rgba(77, 166, 255, 0.25));
  object-fit: contain;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  max-width: 720px;
  margin: 0 auto 1rem;
}

.hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.hero__tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 0.25rem;
}

.hero__tag-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: #fff;
  border: none;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(77, 166, 255, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn--outline:hover {
  background: rgba(77, 166, 255, 0.1);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-mid), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
  will-change: opacity;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.prose {
  max-width: 60ch;
}

.prose--wide {
  max-width: 72ch;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.subsection__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}

.subsection__title:first-child {
  margin-top: 0;
}

.founder-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.founder-photo {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
  opacity: 0.9;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem 0;
}

.founder-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.list {
  list-style: none;
  color: var(--text-muted);
}

.list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-mid);
}

.list--check li::before {
  content: '✓';
  color: var(--accent-blue);
}

.list--compact li {
  margin-bottom: 0.35rem;
}

.services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.services--stacked {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(77, 166, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card__icon {
  display: block;
  color: var(--accent-blue);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.card--compact .card__text {
  margin-bottom: 0.5rem;
}

.card--compact .card__text:last-child {
  margin-bottom: 0;
}

.card--wide {
  max-width: 640px;
}

.card--service .card__text {
  margin-bottom: 0.75rem;
}

.card__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-mid);
  margin-bottom: 0.35rem;
}

.card__scope {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card__scope li {
  padding-left: 1.5rem;
  position: relative;
}

.card__scope li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 600;
}

.card__meta {
  font-size: 0.85rem;
  color: var(--accent-mid);
  margin-bottom: 0.75rem;
}

.grid--two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-block__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.value-block .list li {
  margin-bottom: 0.5rem;
}

.technologies-logos {
  max-width: 100%;
  width: 640px;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
  opacity: 0.92;
  object-fit: contain;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.tech-block__title {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.tech-block .list--compact {
  margin-bottom: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline__item {
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent-mid);
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.timeline__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.timeline__period {
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 500;
}

.timeline__place {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline__role {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline__company {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.timeline__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.section--cta {
  padding: 2.75rem 0 3rem;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
}

.section--cta .container {
  position: relative;
  z-index: 1;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
  z-index: 0;
}

.section--cta .section__title {
  margin-bottom: 0.75rem;
}

.section--cta .section__lead {
  margin-bottom: 0.5rem;
}

.section--cta .section__lead + .section__lead {
  margin-bottom: 0;
}

#cooperation.section {
  padding-bottom: 2.5rem;
}

.section--cta .contact {
  margin-top: 1.25rem;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.contact .btn {
  min-width: 10rem;
}

.btn--github,
.btn--linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.github-icon,
.linkedin-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.contact__company-data {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact__company-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact__company-details {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  margin-bottom: 1rem;
  opacity: 0.8;
  object-fit: contain;
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__content > * {
  transition-delay: 0s;
}

.hero__content > *:nth-child(1) {
  transition-delay: 0.1s;
}

.hero__content > *:nth-child(2) {
  transition-delay: 0.2s;
}

.hero__content > *:nth-child(3) {
  transition-delay: 0.3s;
}

.hero__content > *:nth-child(4) {
  transition-delay: 0.4s;
}

.hero__content > *:nth-child(5) {
  transition-delay: 0.5s;
}

.card {
  transition-delay: 0s;
}

.card:nth-child(1) {
  transition-delay: 0.1s;
}

.card:nth-child(2) {
  transition-delay: 0.2s;
}

.card:nth-child(3) {
  transition-delay: 0.3s;
}

.card:nth-child(4) {
  transition-delay: 0.4s;
}

.card:nth-child(5) {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .hero {
    padding: 5rem 1.5rem 3rem;
  }
  .header__logo-text {
    display: none;
  }
  .header__logo img {
    height: 64px;
  }
}
