@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --caprias-sun: #f6cd26;
  --caprias-amber: #ac6b26;
  --caprias-copper: #bb7f57;
  --caprias-wood: #725956;
  --caprias-brown-700: #563226;
  --caprias-brown-900: #331c17;
  --caprias-neutral-700: #393939;
  --caprias-neutral-900: #202020;

  --brand-primary: var(--caprias-sun);
  --brand-secondary: var(--caprias-amber);
  --brand-accent: var(--caprias-copper);
  --brand-ink: var(--caprias-neutral-900);

  --bg-page: #f8f5f0;
  --bg-surface: #ffffff;
  --bg-surface-soft: #f2ede7;
  --bg-elevated: #fdfbf8;
  --text-strong: #1d1816;
  --text-muted: #5e5048;
  --border-subtle: #d8ccc1;
  --ring-focus: rgba(246, 205, 38, 0.42);
  --shadow-soft: 0 16px 36px rgba(51, 28, 23, 0.08);
  --shadow-card: 0 14px 28px rgba(51, 28, 23, 0.12);
  --shadow-strong: 0 22px 44px rgba(32, 32, 32, 0.22);
}

[data-theme="dark"] {
  --bg-page: #161312;
  --bg-surface: #221d1b;
  --bg-surface-soft: #2b2421;
  --bg-elevated: #312925;
  --text-strong: #f4ede3;
  --text-muted: #cfb8a8;
  --border-subtle: #4f433c;
  --ring-focus: rgba(246, 205, 38, 0.3);
  --shadow-soft: 0 16px 30px rgba(0, 0, 0, 0.38);
  --shadow-card: 0 18px 32px rgba(0, 0, 0, 0.42);
  --shadow-strong: 0 24px 42px rgba(0, 0, 0, 0.58);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 8% 8%, color-mix(in srgb, var(--brand-primary) 18%, transparent), transparent 40%),
    radial-gradient(circle at 92% 20%, color-mix(in srgb, var(--brand-accent) 18%, transparent), transparent 36%),
    var(--bg-page);
  color: var(--text-strong);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--ring-focus);
  outline-offset: 2px;
}

.snap-container {
  overflow: visible;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1.25rem;
}

.section-title,
.pricing-title,
.datenschutz-subtitle,
.support-page h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 2.4vw, 2.7rem);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.section-title,
.pricing-title,
.support-page h1 {
  color: var(--brand-ink);
  text-align: center;
}

.navbar {
  align-items: center;
  backdrop-filter: blur(10px);
  backface-visibility: hidden;
  background: color-mix(in srgb, var(--bg-page) 82%, transparent);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  left: 0;
  right: 0;
  top: 0;
  justify-content: space-between;
  min-height: 76px;
  padding: 0.65rem 2rem;
  position: fixed;
  transform: translate3d(0, 0, 0);
  width: auto;
  will-change: transform;
  z-index: 1000;
}

.logo img {
  height: 54px;
  width: auto;
}

.logo a {
  display: inline-flex;
}

.logo-dark {
  display: none;
}

[data-theme='dark'] .logo-light {
  display: none;
}

[data-theme='dark'] .logo-dark {
  display: block;
}

.navbar-nav-list {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

.navbar-item a {
  border-radius: 999px;
  color: var(--text-strong);
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.88;
  padding: 0.4rem 0.7rem;
  text-decoration: none;
  transition: 200ms ease;
}

.navbar-item a:hover {
  background: var(--bg-surface-soft);
  opacity: 1;
}

.support-link {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--brand-ink) !important;
  opacity: 1 !important;
}

.toggle {
  align-items: center;
  display: flex;
  gap: 0.7rem;
}

.toggle label {
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-strong);
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.theme-toggle {
  appearance: none;
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: 56px;
  justify-content: center;
  padding: 0;
  transition: transform 160ms ease;
  width: 58px;
}

.theme-mode-icon {
  color: var(--text-strong);
  font-size: 1rem;
  line-height: 1;
  opacity: 0.95;
}

.theme-toggle-track {
  background: #d2cdc6;
  border: 1px solid #b8aea3;
  border-radius: 999px;
  display: block;
  height: 24px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease;
  width: 52px;
}

.theme-toggle-thumb {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  height: 18px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform 180ms ease;
  width: 18px;
}

.theme-toggle[aria-pressed='true'] .theme-toggle-track {
  background: color-mix(in srgb, var(--brand-secondary) 70%, #2a2a2a);
  border-color: color-mix(in srgb, var(--brand-primary) 42%, #4f463e);
}

.theme-toggle[aria-pressed='true'] .theme-toggle-thumb {
  transform: translateX(28px);
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.toggle label {
  display: none;
}

.toggle label .material-symbols-outlined {
  font-size: 1.28rem;
  line-height: 1;
}

.menu-icon,
.close-icon,
#menu-toggle {
  display: none;
}

section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.hero-section {
  align-items: center;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 108px;
  position: relative;
}

.hero-section::before {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--brand-primary) 12%, transparent) 0%,
    color-mix(in srgb, var(--brand-secondary) 10%, transparent) 100%
  );
  border-bottom: 1px solid var(--border-subtle);
  content: '';
  inset: 0;
  opacity: 0.48;
  position: absolute;
}

.hero-section::after {
  background:
    radial-gradient(circle, color-mix(in srgb, var(--brand-secondary) 26%, transparent) 0%, transparent 62%);
  content: '';
  height: 720px;
  left: 50%;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  top: 14%;
  transform: translateX(-50%);
  width: 720px;
}

.hero-content {
  display: grid;
  gap: 1.1rem;
  margin: 0 auto;
  max-width: 1320px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-content::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--brand-primary) 55%, white) 18%,
    color-mix(in srgb, var(--brand-secondary) 55%, white) 82%,
    transparent 100%
  );
  border-radius: 999px;
  content: '';
  height: 1px;
  left: 50%;
  opacity: 0.65;
  position: absolute;
  top: -1.4rem;
  transform: translateX(-50%);
  width: min(72vw, 560px);
}

.hero-eyebrow {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-headline {
  color: var(--brand-ink);
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 auto;
  max-width: 820px;
}

.hero-headline-large {
  font-size: clamp(2.8rem, 5.8vw, 6.2rem);
  line-height: 0.94;
  max-width: 900px;
}

.hero-subline {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  margin: 0 auto;
  max-width: 760px;
}

.hero-subline-large {
  font-size: clamp(1.04rem, 1.75vw, 1.32rem);
  line-height: 1.42;
  max-width: 700px;
}

.hero-wordmark-wrap {
  color-scheme: light;
  forced-color-adjust: none;
  isolation: isolate;
  margin: 0 auto;
  width: 100%;
}

.hero-wordmark-fallback {
  color: var(--brand-ink);
  display: none;
  font-family: 'Sora', sans-serif;
  font-size: clamp(3.8rem, 12vw, 8.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 0.9;
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
  text-transform: uppercase;
}

.hero-wordmark {
  display: block;
  filter: drop-shadow(0 20px 44px rgba(28, 22, 12, 0.18));
  height: min(34svh, 21rem);
  margin: 0 auto;
  max-width: 100%;
  width: auto;
}

.hero-wordmark-video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

html[data-darkreader-mode] .hero-wordmark-wrap,
html[data-darkreader-scheme] .hero-wordmark-wrap,
html.darkreader-active .hero-wordmark-wrap {
  display: none;
}

html[data-darkreader-mode] .hero-wordmark-fallback,
html[data-darkreader-scheme] .hero-wordmark-fallback,
html.darkreader-active .hero-wordmark-fallback {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-action {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.9rem 1.55rem;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.hero-action.primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--brand-ink);
  box-shadow: 0 18px 34px rgba(191, 152, 59, 0.22);
}

.hero-action.secondary {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-strong);
}

.hero-action:hover {
  transform: translateY(-2px);
}

.about-overview-section {
  background: var(--bg-page);
  padding-top: 1rem;
}

.about-overview-kicker {
  color: var(--brand-secondary);
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.45rem;
  text-transform: uppercase;
}

.about-overview-title {
  color: var(--brand-ink);
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}

.about-overview-text {
  color: color-mix(in srgb, var(--brand-ink) 72%, transparent);
  font-size: 0.96rem;
  margin: 0.5rem 0 0;
  max-width: 40rem;
}

.about-overview-section .about-mosaic-page {
  background: transparent;
  padding-top: 0.65rem;
}

.scroll-text {
  align-items: center;
  color: var(--text-muted);
  display: inline-flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 0.25rem;
  margin-top: 1rem;
}

.scroll-arrow {
  color: var(--brand-secondary);
  text-decoration: none;
}

.products-section,
.faq-section,
.get-started-section,
.pricing-section,
.datenschutz-section,
.support-page {
  position: relative;
}

.section-intro {
  margin: 0 auto 2rem;
  max-width: 760px;
  text-align: center;
}

.section-kicker {
  color: var(--brand-secondary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.section-copy {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.products-grid,
.team-grid,
.bento-boxes,
.pricing-cards,
.contact-content,
.support-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.product-card,
.bento-box,
.pricing-card,
.faq-item,
.contact-details,
.contact-image,
.support-card,
.datenschutz-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.product-card,
.pricing-card,
.faq-item,
.contact-details,
.contact-image,
.support-card {
  padding: 1.5rem;
}

.faq-section {
  background: color-mix(in srgb, var(--bg-surface-soft) 72%, transparent);
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 860px;
}

.faq-item {
  overflow: hidden;
  padding: 0;
}

.faq-item summary {
  color: var(--brand-ink);
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
  padding: 1.3rem 1.5rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--brand-secondary);
  content: '+';
  font-size: 1.5rem;
  font-weight: 500;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0 1.5rem 1.35rem;
}

.get-started-section {
  background:
    radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--brand-primary) 20%, transparent), transparent 34%),
    radial-gradient(circle at 88% 22%, color-mix(in srgb, var(--brand-secondary) 16%, transparent), transparent 30%),
    color-mix(in srgb, var(--bg-surface-soft) 68%, transparent);
}

.get-started-intro {
  margin: 0 auto 2rem;
  max-width: 760px;
  text-align: center;
}

.get-started-kicker {
  color: var(--brand-secondary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.get-started-copy {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.get-started-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.get-started-step {
  background: color-mix(in srgb, var(--bg-surface) 92%, transparent);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
  padding: 1.35rem;
}

.step-index {
  color: var(--brand-secondary);
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}

.get-started-step h3 {
  color: var(--brand-ink);
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.get-started-step p {
  color: var(--text-muted);
}

.get-started-action {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.products-grid .product-card {
  display: flex;
  flex-direction: column;
  grid-column: span 6;
}

.product-card.highlighted {
  background: var(--bg-elevated);
  border-color: color-mix(in srgb, var(--brand-primary) 38%, var(--border-subtle));
}

[data-theme='dark'] .products-grid .product-card,
html.darkreader-active .products-grid .product-card {
  background: #2a2320;
  border-color: #5c4f47;
}

[data-theme='dark'] .product-card.highlighted,
html.darkreader-active .product-card.highlighted {
  background: #2a2320;
  border-color: #5c4f47;
}

.product-name,
.plan-name,
.bento-box h3,
.contact-details h3,
.support-card h3 {
  color: var(--brand-ink);
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.product-icon .material-symbols-outlined,
.bento-icon,
.support-icon .material-symbols-outlined {
  color: var(--brand-secondary);
  font-size: 2.1rem;
}

.product-description,
.product-features li,
.bento-box p,
.plan-section p,
.plan-section ul li,
.contact-details p,
.support-card p,
.support-channels p,
.datenschutz-section p,
.datenschutz-list li {
  color: var(--text-muted);
}

.product-features {
  list-style: none;
  margin-top: 1rem;
}

.product-features li {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-features li .material-symbols-outlined,
.plan-section ul li::before {
  color: var(--brand-secondary);
}

.team-section {
  background: color-mix(in srgb, var(--bg-surface-soft) 74%, transparent);
}

.team-grid .team-card {
  border-radius: 18px;
  cursor: pointer;
  grid-column: span 4;
  min-height: 440px;
  overflow: hidden;
  perspective: 1200px;
  position: relative;
  transition: transform 240ms ease, filter 260ms ease, opacity 260ms ease;
}

.team-grid:hover .team-card {
  filter: blur(2px) grayscale(0.2) brightness(0.72);
  opacity: 0.72;
  transform: scale(0.97);
}

.team-grid:hover .team-card:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.02);
  z-index: 3;
}

.team-card-inner {
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.team-card:hover .team-card-inner,
.team-card:focus-within .team-card-inner {
  transform: rotateY(180deg);
}

.team-face {
  backface-visibility: hidden;
  border-radius: 18px;
  height: 100%;
  inset: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.team-front {
  background: #111;
}

.team-back {
  background: linear-gradient(160deg, #181512, #2a211c 70%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: flex;
  padding: 1.2rem;
  transform: rotateY(180deg);
}

.team-back-content {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: auto;
  width: 100%;
}

.team-image {
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
  width: 100%;
}

.team-card:hover .team-image {
  transform: scale(1.06);
}

.team-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.75) 76%);
  inset: 0;
  padding: 1.3rem;
  position: absolute;
}

.team-info {
  bottom: 1.3rem;
  left: 1.3rem;
  position: absolute;
  right: 1.3rem;
}

.team-name {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.28rem;
}

.team-role,
.team-description {
  color: rgba(255, 255, 255, 0.9);
}

.team-description {
  font-size: 0.95rem;
  line-height: 1.45;
}

.team-quote {
  border-left: 2px solid var(--brand-primary);
  font-style: italic;
  margin-top: 0.7rem;
  padding-left: 0.7rem;
}

@media (hover: none) {
  .team-grid:hover .team-card,
  .team-grid:hover .team-card:hover {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .team-card:hover .team-card-inner,
  .team-card:focus-within .team-card-inner {
    transform: none;
  }
}

.bento-boxes .bento-box {
  display: flex;
  flex-direction: column;
  grid-column: span 3;
  overflow: hidden;
}

.bento-box img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bento-box-content {
  padding: 1.2rem;
}

.about-mosaic-page {
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--brand-primary) 14%, transparent), transparent 36%),
    var(--bg-page);
  padding-top: 132px;
}

.about-mosaic-page .about-kicker {
  color: var(--brand-ink);
  font-weight: 800;
}

.about-mosaic-page .about-title {
  color: var(--brand-ink);
  margin-bottom: 1.4rem;
}

.about-mosaic-grid {
  display: grid;
  gap: 0.8rem;
  /* Golden-ratio rhythm using Fibonacci segments: 8 / 5 / 8 */
  grid-template-columns: repeat(21, minmax(0, 1fr));
  grid-template-rows: repeat(25, minmax(0, 1fr));
}

.mosaic-tile {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  color: var(--text-strong);
  overflow: hidden;
  position: relative;
}

.mosaic-tile:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mosaic-tile img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.tile-text p,
.tile-fact p,
.tile-mini p {
  line-height: 1.34;
}

.tile-text p {
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  font-weight: 700;
  text-align: left;
}

.tile-image-main {
  grid-column: 1 / 9;
  grid-row: 1 / 9;
}

.tile-bern {
  grid-column: 9 / 14;
  grid-row: 1 / 9;
}

.tile-bern img {
  object-position: center 65%;
}

.tile-bern h3 {
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  left: 50%;
  padding: 0.2rem 0.7rem;
  position: absolute;
  background: color-mix(in srgb, var(--brand-ink) 70%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.75);
  top: 1rem;
  transform: translateX(-50%);
}

.tile-bern::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.22));
  content: '';
  inset: 0;
  position: absolute;
}

.tile-statement {
  align-items: flex-start;
  background: var(--bg-elevated);
  display: flex;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  font-weight: 700;
  grid-column: 14 / 22;
  grid-row: 1 / 9;
  justify-content: flex-start;
  padding: 2rem 1.6rem;
  text-align: left;
}

.tile-wide {
  align-items: end;
  background-image: url('/assets/images/wallpaper.png');
  background-position: center;
  background-size: cover;
  display: flex;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  grid-column: 1 / 9;
  grid-row: 9 / 18;
  padding: 1rem;
  padding-right: 8.6rem;
  position: relative;
}

.tile-wide::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.72) 52%, rgba(0, 0, 0, 0.36) 100%);
  content: '';
  inset: 0;
  position: absolute;
}

.tile-wide p {
  background: rgba(0, 0, 0, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  padding: 0.55rem 0.7rem;
  position: relative;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.56);
  z-index: 2;
}

.sbb-clock {
  align-items: center;
  display: flex;
  height: 92px;
  justify-content: center;
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 92px;
  z-index: 2;
}

.clock-face {
  background: #fff;
  border: 3px solid #e4e4e4;
  border-radius: 50%;
  height: 88px;
  position: relative;
  width: 88px;
}

.tick {
  background: #222;
  border-radius: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: 50% 50%;
}

.tick-12,
.tick-6 {
  height: 10px;
  margin-left: -1px;
  width: 2px;
}

.tick-12 {
  margin-top: -42px;
}

.tick-6 {
  margin-top: 32px;
}

.tick-3,
.tick-9 {
  height: 2px;
  margin-top: -1px;
  width: 10px;
}

.tick-3 {
  margin-left: 32px;
}

.tick-9 {
  margin-left: -42px;
}

.hand {
  border-radius: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: 50% 100%;
}

.hand.hour {
  background: #202020;
  height: 20px;
  margin-left: -2px;
  margin-top: -20px;
  transform: rotate(302deg);
  width: 4px;
}

.hand.minute {
  animation: minute-turn 3600s linear infinite;
  background: #2a2a2a;
  height: 28px;
  margin-left: -1.5px;
  margin-top: -28px;
  width: 3px;
}

.hand.second {
  animation: sbb-second 60s linear infinite;
  background: #e5372f;
  border-radius: 999px;
  height: 32px;
  margin-left: -1px;
  margin-top: -32px;
  width: 2px;
}

.center-cap {
  background: #111;
  border-radius: 50%;
  height: 7px;
  left: 50%;
  margin-left: -3.5px;
  margin-top: -3.5px;
  position: absolute;
  top: 50%;
  width: 7px;
}

.top-dot {
  background: #e5372f;
  border-radius: 50%;
  height: 8px;
  left: 50%;
  margin-left: -4px;
  position: absolute;
  top: 4px;
  width: 8px;
}

.tile-stack {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  gap: 0.8rem;
  grid-column: 9 / 14;
  grid-row: 9 / 18;
  grid-template-rows: 1.618fr 1fr;
}

.tile-stack .tile-fact,
.tile-stack .tile-mini {
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
}

.tile-stack .tile-fact {
  min-height: 86px;
  overflow: hidden;
  position: relative;
}

.tile-map-layer {
  inset: 0;
  opacity: 0.52;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.tile-map-layer iframe {
  border: 0;
  filter: saturate(0.7) contrast(0.95);
  height: 100%;
  transform: scale(1.15);
  width: 100%;
}

.tile-map-glass {
  backdrop-filter: blur(4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(235, 229, 221, 0.48));
  inset: 0;
  position: absolute;
  z-index: 2;
}

.tile-fact-content {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  position: relative;
  z-index: 3;
}

.tile-fact .material-symbols-outlined,
.tile-mini .material-symbols-outlined,
.tile-date p {
  color: var(--brand-primary);
}

.tile-fact p {
  font-family: 'Sora', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brand-ink);
  text-shadow: none;
}

.tile-subfacts {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tile-mini {
  justify-content: center;
  text-align: center;
}

.tile-mini p {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.tile-date p {
  font-size: 1.1rem;
}

.tile-growth,
.tile-happy {
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.mini-label {
  color: var(--text-muted);
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  margin: 0;
  text-transform: uppercase;
}

.mini-value {
  color: var(--brand-ink);
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  line-height: 1.1;
  margin: 0.25rem 0 0;
}

.growth-chart {
  height: 48px;
  margin-top: 0.35rem;
  width: 100%;
}

.growth-chart polyline {
  fill: none;
  stroke: color-mix(in srgb, var(--brand-primary) 52%, var(--brand-secondary));
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
}

.growth-chart circle {
  fill: var(--brand-secondary);
}

.tile-happy .material-symbols-outlined {
  color: var(--brand-secondary);
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

[data-theme='dark'] .mini-label {
  color: #d8c6b8;
}

[data-theme='dark'] .mini-value {
  color: #fff5ea;
}

.tile-number {
  align-items: flex-start;
  background: var(--bg-elevated);
  display: flex;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  grid-column: 14 / 22;
  grid-row: 9 / 18;
  justify-content: flex-start;
  padding: 1.2rem 1.1rem;
  text-align: left;
}

.tile-bold {
  align-items: flex-start;
  background: var(--bg-elevated);
  display: flex;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.9vw, 2.15rem);
  font-weight: 700;
  grid-column: 1 / 9;
  grid-row: 18 / 26;
  padding: 1.4rem;
  text-align: left;
}

.tile-logo {
  align-items: center;
  display: flex;
  grid-column: 9 / 12;
  grid-row: 18 / 26;
  justify-content: center;
  padding: 1rem;
}

.tile-logo img {
  max-height: 124px;
  object-fit: contain;
}

.tile-gif {
  grid-column: 12 / 14;
  grid-row: 18 / 26;
}

.tile-image img,
.tile-gif img {
  animation: slow-pan 16s ease-in-out infinite alternate;
}

.tile-long {
  align-items: flex-start;
  background: var(--bg-elevated);
  display: flex;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 700;
  grid-column: 14 / 22;
  grid-row: 18 / 26;
  justify-content: flex-start;
  padding: 1.2rem;
  text-align: left;
}

.tile-statement,
.tile-number,
.tile-bold,
.tile-long {
  color: var(--brand-ink);
  text-wrap: balance;
}

[data-theme='dark'] .theme-toggle-track {
  background: #3b342d;
  border-color: #5e554d;
}

[data-theme='dark'] .theme-mode-icon {
  color: var(--brand-primary);
}

[data-theme='dark'] .mosaic-tile {
  background: #1e1917;
  border-color: #6b5d54;
}

[data-theme='dark'] .tile-stack .tile-fact,
[data-theme='dark'] .tile-stack .tile-mini {
  background: var(--bg-elevated);
  border-color: var(--border-subtle);
}

[data-theme='dark'] .tile-statement,
[data-theme='dark'] .tile-number,
[data-theme='dark'] .tile-bold,
[data-theme='dark'] .tile-long,
[data-theme='dark'] .tile-fact p,
[data-theme='dark'] .tile-mini p {
  color: #fff5ea;
}

[data-theme='dark'] .tile-map-glass {
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.72), rgba(10, 10, 10, 0.76));
}

.reveal-up {
  animation: reveal-up 650ms ease both;
}

.about-mosaic-grid .reveal-up:nth-child(2) {
  animation-delay: 80ms;
}

.about-mosaic-grid .reveal-up:nth-child(3) {
  animation-delay: 140ms;
}

.about-mosaic-grid .reveal-up:nth-child(4) {
  animation-delay: 180ms;
}

.about-mosaic-grid .reveal-up:nth-child(5) {
  animation-delay: 220ms;
}

.about-mosaic-grid .reveal-up:nth-child(6) {
  animation-delay: 260ms;
}

.about-mosaic-grid .reveal-up:nth-child(7) {
  animation-delay: 300ms;
}

.about-mosaic-grid .reveal-up:nth-child(8) {
  animation-delay: 340ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes slow-pan {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes minute-turn {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes sbb-second {
  0% {
    transform: rotate(0deg);
  }

  97.5% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pricing-cards .pricing-card {
  display: flex;
  flex-direction: column;
  grid-column: span 4;
}

.pricing-card.highlighted {
  border-color: var(--brand-secondary);
  box-shadow: var(--shadow-card);
}

.plan-section {
  margin-top: 0.8rem;
  text-align: left;
}

.plan-section strong {
  color: var(--brand-secondary);
  display: block;
  margin-bottom: 0.2rem;
}

.plan-section ul {
  list-style: none;
}

.plan-section ul li {
  margin-bottom: 0.35rem;
}

.plan-section ul li::before {
  content: '• ';
}

.plan-price {
  color: var(--brand-ink);
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  margin-top: auto;
  padding-top: 1rem;
}

.plan-price small {
  color: var(--text-muted);
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.plan-button,
.download-btn {
  align-items: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 999px;
  color: var(--brand-ink);
  display: inline-flex;
  font-weight: 700;
  gap: 0.3rem;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.72rem 1.15rem;
  text-decoration: none;
}

.contact-section {
  background: color-mix(in srgb, var(--bg-surface-soft) 76%, transparent);
}

.contact-details,
.contact-image {
  grid-column: span 6;
}

.contact-image img {
  border-radius: 12px;
  width: 100%;
}

.support-page {
  min-height: 100vh;
  padding-top: 132px;
}

.support-card {
  grid-column: span 6;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.support-channels {
  list-style: none;
  margin-top: 0.75rem;
  text-align: left;
}

.support-channels li {
  align-items: flex-start;
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.support-channels .material-symbols-outlined {
  color: var(--brand-secondary);
}

.datenschutz-section {
  min-height: 100vh;
  padding-top: 132px;
}

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

.datenschutz-subtitle {
  color: var(--brand-ink);
  margin-bottom: 0.9rem;
  margin-top: 1.8rem;
  text-align: left;
}

.datenschutz-heading {
  color: var(--brand-secondary);
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  margin-top: 1.4rem;
}

.datenschutz-list {
  margin: 0.8rem 0 1rem 1.4rem;
}

.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
}

.footer-container {
  margin: 0 auto;
  max-width: 800px;
  padding: 0 1.25rem;
  text-align: center;
}

.footer-heading {
  color: var(--brand-ink);
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.footer-email a,
.footer-links a {
  color: var(--brand-secondary);
  font-weight: 600;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 0.7rem 0;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 0.5rem;
}

@media (max-width: 1080px) {
  .about-mosaic-grid {
    grid-template-rows: none;
  }

  .products-grid .product-card,
  .pricing-cards .pricing-card,
  .bento-boxes .bento-box,
  .support-card,
  .team-grid .team-card {
    grid-column: span 6;
  }

  .tile-image-main,
  .tile-bern,
  .tile-statement,
  .tile-wide,
  .tile-stack,
  .tile-number,
  .tile-bold,
  .tile-long,
  .contact-details,
  .contact-image {
    grid-column: span 21;
    grid-row: auto;
  }

  .tile-logo,
  .tile-gif {
    grid-column: span 10;
    grid-row: auto;
  }

  .tile-wide {
    padding-right: 7.6rem;
  }

  .sbb-clock {
    height: 82px;
    width: 82px;
  }

  .clock-face {
    height: 78px;
    width: 78px;
  }
}

@media (max-width: 860px) {
  .navbar {
    min-height: 72px;
    padding: 0.6rem 1rem;
  }

  .navbar-nav-list {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    inset: 72px 0 auto;
    padding: 1rem;
    position: fixed;
    z-index: 999;
  }

  #menu-toggle:checked ~ .navbar-nav-list {
    display: flex;
  }

  .toggle label {
    align-items: center;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    position: relative;
    width: 44px;
  }

  .toggle label .material-symbols-outlined {
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 180ms ease;
  }

  .menu-icon,
  .close-icon {
    display: inline-flex;
    pointer-events: none;
  }

  #menu-toggle:not(:checked) + .logo + .toggle .menu-icon {
    opacity: 1;
  }

  #menu-toggle:checked + .logo + .toggle .close-icon {
    opacity: 1;
  }

  .theme-toggle {
    gap: 0.15rem;
    height: 48px;
    width: 54px;
  }

  .theme-mode-icon {
    font-size: 0.92rem;
  }

  .products-grid .product-card,
  .team-grid .team-card,
  .bento-boxes .bento-box,
  .pricing-cards .pricing-card,
  .support-card {
    grid-column: span 12;
  }

  .get-started-steps {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 108px;
  }

  .hero-headline-large {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .hero-wordmark-wrap {
    width: 100%;
  }

  .hero-wordmark {
    height: min(24svh, 10rem);
  }

  .hero-subline-large {
    font-size: clamp(1rem, 5vw, 1.24rem);
    line-height: 1.4;
  }

  .hero-actions {
    flex-direction: column;
  }

  .about-mosaic-page {
    padding-top: 118px;
  }

  .tile-logo,
  .tile-gif {
    grid-column: span 21;
    grid-row: auto;
  }

  .tile-wide {
    min-height: 176px;
    padding-right: 6.2rem;
  }

  .sbb-clock {
    height: 66px;
    right: 0.55rem;
    width: 66px;
  }

  .clock-face {
    height: 62px;
    width: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* Keynote-style empty bento override */
.about-mosaic-page {
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--brand-primary) 18%, transparent), transparent 38%),
    radial-gradient(circle at 88% 20%, color-mix(in srgb, var(--brand-accent) 20%, transparent), transparent 34%),
    var(--bg-page);
  padding-top: 96px;
}

.about-mosaic-page .about-kicker,
.about-mosaic-page .about-title {
  display: none;
}

.about-mosaic-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 78px));
  position: relative;
}

.about-mosaic-grid .mosaic-tile {
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--bg-surface) 95%, #fff), color-mix(in srgb, var(--bg-surface-soft) 88%, #fff));
  border: 1px solid color-mix(in srgb, var(--border-subtle) 82%, #fff);
  border-radius: 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 16px 36px rgba(51, 28, 23, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.about-mosaic-grid .mosaic-tile::before {
  background: radial-gradient(circle at 18% 14%, color-mix(in srgb, var(--brand-primary) 24%, transparent), transparent 58%);
  content: '';
  inset: 0;
  position: absolute;
}

.about-mosaic-grid .mosaic-tile::after {
  backdrop-filter: blur(3px);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.07));
  content: '';
  inset: 0;
  position: absolute;
}

.about-mosaic-grid .mosaic-tile:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.62) inset,
    0 20px 40px rgba(51, 28, 23, 0.16);
  transform: translateY(-3px);
}

.keynote-content {
  color: var(--brand-ink);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
  padding: 0.82rem;
  position: relative;
  z-index: 2;
}

.box-number {
  align-items: center;
  background: color-mix(in srgb, var(--bg-page) 86%, var(--brand-primary));
  border: 1px solid color-mix(in srgb, var(--border-subtle) 78%, #fff);
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
  color: var(--brand-ink);
  display: none;
  font-family: 'Sora', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  height: 1.7rem;
  justify-content: center;
  left: 0.65rem;
  letter-spacing: 0.01em;
  line-height: 1;
  position: absolute;
  top: 0.65rem;
  width: 1.7rem;
  z-index: 7;
}

.keynote-content-main {
  justify-content: flex-end;
  padding: 1.35rem;
}

.keynote-trailer-card {
  isolation: isolate;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.4rem;
}

.keynote-trailer-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.keynote-trailer-overlay {
  background:
    linear-gradient(180deg, rgba(12, 11, 9, 0.04), rgba(12, 11, 9, 0.62)),
    linear-gradient(135deg, rgba(210, 160, 59, 0.18), transparent 45%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.keynote-trailer-copy {
  display: grid;
  gap: 0.5rem;
  max-width: 68%;
  position: relative;
  text-align: left;
  z-index: 4;
}

.keynote-trailer-copy h2,
.keynote-trailer-copy p:not(.keynote-label) {
  color: #fff !important;
}

.keynote-trailer-copy h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.08;
}

.keynote-trailer-copy p:not(.keynote-label) {
  font-size: 0.96rem;
  max-width: 32ch;
}

.keynote-content h2,
.keynote-content h3 {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.keynote-content h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.keynote-content h3 {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.keynote-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.keynote-icon-card {
  justify-content: center;
}

.keynote-location-card {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.keynote-location-card .keynote-icon {
  font-size: 1.45rem;
}

.keynote-location-card h3,
.keynote-location-card p,
.keynote-location-card .keynote-label,
.keynote-location-card .keynote-icon {
  position: relative;
  z-index: 4;
}

.keynote-location-card .keynote-skyline {
  top: auto !important;
  bottom: -2px;
  display: block;
  height: 120% !important;
  left: -3%;
  color: #000;
  fill: currentColor;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  right: 0;
  shape-rendering: geometricPrecision;
  transform: scaleY(1.5);
  transform-origin: center bottom;
  transition: opacity 220ms ease;
  width: 106% !important;
  box-shadow: none;
  z-index: 3;
}

.keynote-2:hover .keynote-skyline {
  opacity: 1;
}

.keynote-2::before {
  opacity: 0.45;
}

.keynote-2::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.keynote-2 {
  box-shadow: none !important;
}

.keynote-2:hover {
  box-shadow: none !important;
}

.keynote-icon {
  color: var(--brand-secondary);
  font-size: 1.45rem;
}

.keynote-label {
  color: var(--brand-secondary) !important;
  font-size: 0.68rem !important;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.keynote-list {
  color: var(--text-muted);
  list-style: none;
  margin-top: 0.2rem;
}

.keynote-list li {
  border-bottom: 1px solid color-mix(in srgb, var(--border-subtle) 75%, transparent);
  font-size: 0.92rem;
  padding: 0.4rem 0;
}

.keynote-kpi {
  color: var(--brand-ink) !important;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem) !important;
  font-weight: 800;
  line-height: 1;
}

.keynote-content-kpi {
  isolation: isolate;
  justify-content: center;
  overflow: hidden;
}

.keynote-content-kpi::before {
  background: conic-gradient(
    from 0deg at 50% 50%,
    color-mix(in srgb, var(--caprias-sun) 72%, #fff) 0 25%,
    color-mix(in srgb, var(--caprias-copper) 78%, #fff) 25% 50%,
    color-mix(in srgb, var(--caprias-amber) 76%, #fff) 50% 75%,
    color-mix(in srgb, var(--caprias-brown-700) 72%, #fff) 75% 100%
  );
  content: '';
  inset: 0;
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.keynote-content-kpi::after {
  background:
    linear-gradient(
      90deg,
      transparent 49.7%,
      color-mix(in srgb, var(--border-subtle) 82%, #fff) 49.7% 50.3%,
      transparent 50.3%
    ),
    linear-gradient(
      0deg,
      transparent 49.7%,
      color-mix(in srgb, var(--border-subtle) 82%, #fff) 49.7% 50.3%,
      transparent 50.3%
    );
  content: '';
  inset: 0;
  opacity: 0.62;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.keynote-content-kpi > * {
  position: relative;
  z-index: 2;
}

.keynote-kpi-center {
  align-items: center;
  background: color-mix(in srgb, var(--bg-surface) 80%, #fff);
  border: 1px solid color-mix(in srgb, var(--border-subtle) 86%, #fff);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(51, 28, 23, 0.16);
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  height: clamp(96px, 7.8vw, 118px);
  left: 50%;
  justify-content: center;
  padding: 0.4rem;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(96px, 7.8vw, 118px);
  z-index: 4;
}

.keynote-kpi-center .keynote-label {
  margin: 0;
}

.keynote-kpi-center .keynote-kpi {
  font-size: clamp(0.86rem, 1.25vw, 1rem) !important;
  letter-spacing: 0;
  margin: 0;
}

.keynote-kpi-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.kpi-fact {
  align-items: center;
  color: var(--brand-ink);
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.12rem;
  justify-content: center;
  line-height: 1.2;
  padding: 0.7rem;
  text-align: center;
}

.kpi-fact strong {
  font-weight: 800;
}

.kpi-fact small {
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.2;
}

.kpi-fact .material-symbols-outlined {
  animation: kpiIconCoreFlow 4.2s ease-in-out infinite;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #2a150f;
  font-size: 1.85rem;
  height: auto;
  line-height: 1;
  padding: 0;
  text-shadow:
    0 0 0 rgba(246, 205, 38, 0),
    0 0 0 rgba(187, 127, 87, 0);
  width: auto;
}

.kpi-fact-1 .material-symbols-outlined { animation-delay: 0s; }
.kpi-fact-2 .material-symbols-outlined { animation-delay: 0.24s; }
.kpi-fact-3 .material-symbols-outlined { animation-delay: 0.48s; }
.kpi-fact-4 .material-symbols-outlined { animation-delay: 0.72s; }

@keyframes kpiIconCoreFlow {
  0%, 100% {
    color: var(--caprias-amber);
    filter: saturate(1) brightness(1);
    text-shadow:
      0 0 0 rgba(246, 205, 38, 0),
      0 0 0 rgba(187, 127, 87, 0);
    transform: scale(1);
  }
  40% {
    color: var(--caprias-sun);
    filter: saturate(1.2) brightness(1.12);
    text-shadow:
      0 0 8px rgba(246, 205, 38, 0.45),
      0 0 14px rgba(187, 127, 87, 0.28);
    transform: scale(1.06);
  }
  70% {
    color: var(--caprias-copper);
    filter: saturate(1.1) brightness(1.06);
    text-shadow:
      0 0 6px rgba(246, 205, 38, 0.26),
      0 0 10px rgba(187, 127, 87, 0.22);
    transform: scale(1.02);
  }
}

.keynote-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.3rem;
}

.keynote-chip-row span {
  background: color-mix(in srgb, var(--brand-primary) 22%, var(--bg-surface));
  border: 1px solid color-mix(in srgb, var(--brand-secondary) 28%, var(--border-subtle));
  border-radius: 999px;
  color: var(--brand-ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.26rem 0.56rem;
}

.keynote-platform-card {
  justify-content: center;
  text-align: left;
}

.keynote-platform-card h3 {
  margin-top: 0.12rem;
}

.keynote-platform-card p:not(.keynote-label) {
  color: color-mix(in srgb, var(--brand-ink) 74%, transparent);
  font-size: 0.9rem;
  margin-top: 0.18rem;
}

.keynote-platform-row {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.keynote-platform-item {
  align-items: center;
  display: grid;
  gap: 0.42rem;
  justify-items: center;
  min-width: 4.8rem;
  padding: 0;
  text-align: center;
}

.keynote-platform-icon {
  color: var(--brand-secondary);
  height: 1.55rem;
  width: 1.55rem;
}

.keynote-platform-item span {
  color: var(--brand-ink);
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.keynote-pill-grid {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 0.3rem;
}

.keynote-pill-grid span {
  background: color-mix(in srgb, var(--bg-surface-soft) 78%, #fff);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--brand-ink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.45rem;
  text-align: center;
}

.keynote-values-card {
  justify-content: center;
  overflow: hidden;
}

.keynote-values-list {
  display: grid;
  gap: 0.68rem;
  grid-template-columns: 1fr;
  margin-top: 0.28rem;
}

.keynote-value-item {
  align-items: center;
  display: grid;
  gap: 0.34rem;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.keynote-value-item .material-symbols-outlined {
  color: var(--brand-secondary);
  font-size: 1.24rem;
  line-height: 1;
}

.keynote-value-item strong {
  color: var(--brand-ink);
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  line-height: 1.1;
}

.keynote-kpi-ring-wrap {
  align-items: center;
}

.keynote-support-card {
  justify-content: center;
}

.keynote-support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.keynote-support-grid > * {
  align-items: center;
  background: color-mix(in srgb, var(--bg-surface-soft) 78%, #fff);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--brand-ink);
  display: inline-flex;
  flex-direction: column;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.2rem;
  justify-content: center;
  line-height: 1.2;
  min-height: 3rem;
  padding: 0.38rem 0.3rem;
  text-align: center;
  text-decoration: none;
  width: calc(33.333% - 0.45rem);
  word-break: normal;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.keynote-support-grid > *:hover {
  border-color: color-mix(in srgb, var(--brand-secondary) 45%, var(--border-subtle));
  box-shadow: 0 8px 18px rgba(51, 28, 23, 0.14);
  transform: translateY(-2px);
}

.keynote-support-grid > *:focus-visible {
  outline: 2px solid var(--ring-focus);
  outline-offset: 2px;
}

.keynote-support-grid .material-symbols-outlined {
  align-items: center;
  background: color-mix(in srgb, var(--brand-primary) 24%, transparent);
  border-radius: 999px;
  color: var(--brand-secondary);
  display: inline-flex;
  font-size: 1rem;
  height: 1.75rem;
  justify-content: center;
  line-height: 1;
  width: 1.75rem;
}

.keynote-support-grid > * {
  animation: supportTileIn 420ms ease both;
}

.keynote-support-grid > *:nth-child(1) { animation-delay: 20ms; }
.keynote-support-grid > *:nth-child(2) { animation-delay: 80ms; }
.keynote-support-grid > *:nth-child(3) { animation-delay: 140ms; }
.keynote-support-grid > *:nth-child(4) { animation-delay: 200ms; }
.keynote-support-grid > *:nth-child(5) { animation-delay: 260ms; }

@keyframes supportTileIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.keynote-support-card > p:not(.keynote-label) {
  font-size: 0.86rem;
  line-height: 1.35;
}

.keynote-social-card {
  justify-content: center;
}

.keynote-social-grid {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  justify-content: flex-start;
  margin-top: 0.35rem;
  width: auto;
}

.social-pill {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: inherit;
  display: inline-flex;
  gap: 0;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  padding: 0.1rem;
  text-decoration: none;
  transition: transform 180ms ease;
}

.social-pill:hover {
  transform: translateY(-2px);
}

.social-icon-wrap {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  height: 2rem;
  justify-content: center;
  width: 2rem;
  flex: 0 0 2rem;
}

.social-icon {
  display: block;
  fill: currentColor;
  height: 2rem;
  width: 2rem;
}

.social-pill.linkedin .social-icon {
  color: #0a66c2;
}

.social-pill.youtube .social-icon {
  color: #ff0033;
}

.keynote-kpi-ring {
  align-items: center;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--bg-surface) 90%, #fff) 58%, transparent 59%),
    conic-gradient(from 40deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent), var(--brand-primary));
  border-radius: 50%;
  display: flex;
  height: 96px;
  justify-content: center;
  width: 96px;
}

.keynote-avatar-row {
  display: flex;
  margin-top: 0.25rem;
}

.keynote-avatar-row span {
  background: linear-gradient(145deg, var(--brand-primary), var(--brand-secondary));
  border: 2px solid var(--bg-surface);
  border-radius: 50%;
  display: block;
  height: 18px;
  margin-left: -5px;
  width: 18px;
}

.keynote-avatar-row span:first-child {
  margin-left: 0;
}

.keynote-mini-bars {
  display: flex;
  gap: 0.28rem;
  margin: 0.1rem 0 0.2rem;
}

.keynote-mini-bars span {
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 999px;
  display: block;
  width: 8px;
}

.keynote-mini-bars span:nth-child(1) { height: 12px; }
.keynote-mini-bars span:nth-child(2) { height: 18px; }
.keynote-mini-bars span:nth-child(3) { height: 24px; }

.keynote-afterwork-card {
  isolation: isolate;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.3rem;
}

.keynote-afterwork-hitarea {
  align-items: center;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  display: flex;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  inset: 0 auto 0 0;
  justify-content: flex-start;
  padding: 0 0.9rem;
  position: absolute;
  transition: background 180ms ease, color 180ms ease;
  width: 26%;
  z-index: 3;
}

.keynote-afterwork-hitarea-right {
  inset: 0 0 0 auto;
  justify-content: flex-end;
}

.keynote-afterwork-hitarea:hover {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent);
  color: #fff;
}

.keynote-afterwork-hitarea-right:hover {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.18), transparent);
}

.keynote-afterwork-slides {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.keynote-afterwork-slides img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transition: opacity 320ms ease, transform 600ms ease;
  width: 100%;
}

.keynote-afterwork-slides img.is-active {
  opacity: 1;
  transform: scale(1.03);
}

.keynote-afterwork-overlay {
  background:
    linear-gradient(180deg, rgba(14, 12, 10, 0.08), rgba(14, 12, 10, 0.72)),
    linear-gradient(135deg, rgba(214, 165, 63, 0.16), transparent 48%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.keynote-afterwork-copy {
  display: grid;
  gap: 0.45rem;
  max-width: 75%;
  position: relative;
  text-align: left;
  z-index: 4;
}

.keynote-afterwork-copy h3,
.keynote-afterwork-copy p:not(.keynote-label) {
  color: #fff !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.keynote-afterwork-copy h3 {
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  line-height: 1.14;
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.62),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.keynote-afterwork-copy .keynote-label {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.keynote-afterwork-dots {
  align-items: center;
  display: flex;
  gap: 0.6rem;
  margin-top: 0.15rem;
}

.keynote-afterwork-dot {
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: block;
  height: 9px;
  padding: 0;
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
  width: 9px;
}

.keynote-afterwork-dot:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: scale(1.08);
}

.keynote-afterwork-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}


.keynote-link {
  align-self: flex-start;
  border-bottom: 1px solid color-mix(in srgb, var(--brand-secondary) 70%, transparent);
  color: var(--brand-secondary);
  font-weight: 700;
  margin-top: 0.2rem;
  text-decoration: none;
}

.keynote-1 { grid-column: 1 / 10; grid-row: 1 / 7; border-radius: 24px; }
.keynote-2 { grid-column: 10 / 17; grid-row: 1 / 4; border-radius: 18px; }
.keynote-3 { grid-column: 10 / 14; grid-row: 4 / 7; border-radius: 18px; }
.keynote-4 { grid-column: 14 / 17; grid-row: 4 / 9; border-radius: 24px; }
.keynote-5 { grid-column: 1 / 6; grid-row: 7 / 11; border-radius: 24px; }
.keynote-6 { grid-column: 6 / 11; grid-row: 10 / 13; border-radius: 18px; }
.keynote-7 { grid-column: 11 / 17; grid-row: 9 / 12; border-radius: 24px; }
.keynote-8 { grid-column: 6 / 11; grid-row: 7 / 10; border-radius: 18px; }
.keynote-9 { grid-column: 1 / 6; grid-row: 11 / 13; border-radius: 18px; }

.keynote-2,
.keynote-4,
.keynote-7 {
  transform: translateY(6px);
}

.keynote-3,
.keynote-8 {
  transform: translateY(-4px);
}

.keynote-center-logo {
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.18));
  height: 112px;
  width: 112px;
}

.keynote-floating-logo {
  align-self: center;
  grid-column: 11 / 14;
  grid-row: 7 / 9;
  justify-self: center;
  pointer-events: none;
  z-index: 6;
}

[data-theme='dark'] .about-mosaic-page {
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--brand-primary) 18%, transparent), transparent 38%),
    radial-gradient(circle at 88% 20%, color-mix(in srgb, var(--brand-accent) 14%, transparent), transparent 34%),
    var(--bg-page);
}

[data-theme='dark'] .about-mosaic-grid .mosaic-tile {
  background: linear-gradient(165deg, #2a2320, #1f1a17);
  border-color: #5c4f47;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 18px 42px rgba(0, 0, 0, 0.35);
}

[data-theme='dark'] .about-mosaic-grid .mosaic-tile::after {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

[data-theme='dark'] .box-number {
  background: color-mix(in srgb, var(--bg-page) 80%, var(--brand-secondary));
  border-color: color-mix(in srgb, var(--border-subtle) 72%, #000);
  color: #fff4e8;
}

[data-theme='dark'] .keynote-content h2,
[data-theme='dark'] .keynote-content h3,
[data-theme='dark'] .keynote-kpi {
  color: #fff4e8 !important;
}

[data-theme='dark'] .keynote-content p,
[data-theme='dark'] .keynote-list,
[data-theme='dark'] .keynote-list li {
  color: #d2c2b4;
}

[data-theme='dark'] .keynote-kpi-center {
  background: color-mix(in srgb, #241d1a 88%, #000);
  border-color: #5a4d44;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

[data-theme='dark'] .kpi-fact {
  color: #fff4e8;
}

[data-theme='dark'] .kpi-fact .material-symbols-outlined {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #ffd84a;
}

[data-theme='dark'] .keynote-content-kpi::before {
  background: conic-gradient(
    from 0deg at 50% 50%,
    color-mix(in srgb, var(--caprias-sun) 52%, #161312) 0 25%,
    color-mix(in srgb, var(--caprias-copper) 56%, #161312) 25% 50%,
    color-mix(in srgb, var(--caprias-amber) 52%, #161312) 50% 75%,
    color-mix(in srgb, var(--caprias-brown-700) 62%, #161312) 75% 100%
  );
  opacity: 0.82;
}

[data-theme='dark'] .keynote-content-kpi::after {
  background:
    linear-gradient(
      90deg,
      transparent 49.7%,
      color-mix(in srgb, #6b5a4f 72%, #000) 49.7% 50.3%,
      transparent 50.3%
    ),
    linear-gradient(
      0deg,
      transparent 49.7%,
      color-mix(in srgb, #6b5a4f 72%, #000) 49.7% 50.3%,
      transparent 50.3%
    );
  opacity: 0.56;
}

[data-theme='dark'] .keynote-link {
  color: var(--brand-primary);
  border-bottom-color: color-mix(in srgb, var(--brand-primary) 65%, transparent);
}

[data-theme='dark'] .keynote-chip-row span {
  background: color-mix(in srgb, var(--brand-primary) 18%, #2c241f);
  border-color: color-mix(in srgb, var(--brand-primary) 25%, #4d413a);
  color: #fff4e8;
}

[data-theme='dark'] .keynote-pill-grid span {
  background: #2b2521;
  border-color: #5a4d44;
  color: #fff4e8;
}


[data-theme='dark'] .keynote-support-grid > * {
  background: #2b2521;
  border-color: #5a4d44;
  color: #fff4e8;
}

[data-theme='dark'] .keynote-support-grid .material-symbols-outlined {
  background: color-mix(in srgb, var(--brand-primary) 22%, transparent);
  color: var(--brand-primary);
}

[data-theme='dark'] .social-pill {
  color: #fff4e8;
}

[data-theme='dark'] .social-icon-wrap {
  background: transparent;
  border: 0;
}

[data-theme='dark'] .social-pill.linkedin .social-icon {
  color: #7cb3ff;
}

[data-theme='dark'] .social-pill.youtube .social-icon {
  color: #ff6b83;
}

[data-theme='dark'] .keynote-skyline {
  color: #000;
  box-shadow: none;
}

[data-theme='dark'] .keynote-2::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08));
}

[data-theme='dark'] .keynote-2 {
  box-shadow: none !important;
}

@media (max-width: 1080px) {
  .about-mosaic-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(14, minmax(0, 80px));
  }

  .keynote-1 { grid-column: 1 / 9; grid-row: 1 / 5; }
  .keynote-2 { grid-column: 1 / 5; grid-row: 5 / 8; }
  .keynote-3 { grid-column: 5 / 9; grid-row: 5 / 8; }
  .keynote-4 { grid-column: 1 / 4; grid-row: 8 / 11; }
  .keynote-5 { grid-column: 4 / 9; grid-row: 8 / 11; }
  .keynote-6 { grid-column: 1 / 4; grid-row: 13 / 15; }
  .keynote-7 { grid-column: 5 / 9; grid-row: 11 / 13; }
  .keynote-8 { grid-column: 1 / 5; grid-row: 11 / 13; }
  .keynote-9 { grid-column: 4 / 9; grid-row: 13 / 15; }

  .keynote-2,
  .keynote-3,
  .keynote-4,
  .keynote-5,
  .keynote-6,
  .keynote-7,
  .keynote-8,
  .keynote-9 {
    transform: none;
  }

  .keynote-center-logo {
    height: 98px;
    width: 98px;
  }

  .keynote-floating-logo {
    grid-column: 4 / 6;
    grid-row: 8 / 11;
  }

  .keynote-support-grid > * {
    width: calc(50% - 0.45rem);
  }

  .keynote-social-grid {
    gap: 0.65rem;
  }

}

@media (max-width: 860px) {
  .about-mosaic-grid {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .keynote-1,
  .keynote-2,
  .keynote-3,
  .keynote-4,
  .keynote-5,
  .keynote-6,
  .keynote-7,
  .keynote-8,
  .keynote-9 {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
    width: 100%;
  }

  .keynote-floating-logo {
    display: none;
  }

  .about-mosaic-grid .mosaic-tile,
  .keynote-1,
  .keynote-4,
  .keynote-5,
  .keynote-7,
  .keynote-2,
  .keynote-3,
  .keynote-6,
  .keynote-8,
  .keynote-9 {
    border-radius: 16px;
  }

  .keynote-center-logo {
    height: 92px;
    width: 92px;
  }

  .keynote-1,
  .keynote-7 {
    min-height: 360px;
  }

  .keynote-1 {
    height: 420px;
    min-height: 420px;
  }

  .keynote-2,
  .keynote-6 {
    min-height: 320px;
  }

  .keynote-2 {
    position: relative;
  }

  .keynote-6 {
    min-height: 380px;
    position: relative;
  }

  .keynote-7 {
    position: relative;
  }

  .keynote-location-card {
    inset: 0;
    justify-content: flex-start;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    position: absolute;
  }

  .keynote-content-kpi {
    inset: 0;
    position: absolute;
  }

  .keynote-afterwork-card {
    inset: 0;
    min-height: 0;
    padding: 0;
    position: absolute;
  }

  .keynote-location-card h3 + p {
    margin-bottom: 7.9rem;
  }

  .keynote-4,
  .keynote-5 {
    min-height: 260px;
  }

  .keynote-location-card .keynote-skyline {
    bottom: 0;
    height: auto !important;
    left: 50%;
    max-width: none;
    opacity: 0.88;
    transform: translateX(-50%) scaleY(1.46);
    transform-origin: center bottom;
    width: calc(100% + 1.75rem) !important;
  }

  .keynote-trailer-card {
    align-items: stretch;
    display: flex;
    justify-content: flex-end;
    min-height: 100%;
    padding: 0;
  }

  .keynote-trailer-copy {
    background: linear-gradient(180deg, transparent, rgba(12, 11, 9, 0.8));
    inset: auto 0 0 0;
    max-width: 100%;
    margin-top: auto;
    padding: 3.5rem 1rem 1rem;
    position: absolute;
  }

  .keynote-trailer-video {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
  }

  .keynote-support-grid {
    gap: 0.4rem;
  }

  .keynote-support-grid span {
    min-height: 3.3rem;
  }

  .kpi-fact {
    font-size: 0.68rem;
    padding: 0.72rem;
  }

  .kpi-fact small {
    font-size: 0.6rem;
  }

  .keynote-kpi-center {
    height: 96px;
    width: 96px;
  }

  .keynote-kpi-center .keynote-kpi {
    font-size: 0.72rem !important;
  }

  .keynote-afterwork-copy {
    inset: auto 0 0 0;
    max-width: 100%;
    padding: 3.25rem 1rem 1rem;
    position: absolute;
  }

}

@media (max-width: 520px) {
  .keynote-1,
  .keynote-2,
  .keynote-6,
  .keynote-7 {
    min-height: 380px;
  }

  .keynote-1 {
    height: 440px;
    min-height: 440px;
  }

  .keynote-7 {
    min-height: 400px;
  }

  .keynote-location-card {
    padding-bottom: 0;
  }

  .keynote-location-card h3 + p {
    margin-bottom: 7.2rem;
  }

  .keynote-location-card .keynote-skyline {
    bottom: 0;
    transform: translateX(-50%) scaleY(1.34);
    transform-origin: center bottom;
    width: calc(100% + 1.25rem) !important;
  }

  .keynote-support-grid span {
    width: 100%;
  }

  .kpi-fact {
    font-size: 0.68rem;
    padding: 0.62rem;
  }

  .kpi-fact .material-symbols-outlined {
    font-size: 1.45rem;
    height: auto;
    width: auto;
  }

  .keynote-kpi-center {
    height: 98px;
    width: 98px;
  }

  .keynote-kpi-center .keynote-label {
    font-size: 0.58rem !important;
  }

  .keynote-kpi-center .keynote-kpi {
    font-size: 0.72rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kpi-fact .material-symbols-outlined {
    animation: none;
  }
}
