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

/* page transition animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



:root {
  --bg-primary: #0B001A;
  --bg-card: linear-gradient(135deg, #1a1a3e 0%, #0d0d24 100%);
  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --accent-blue: #6B7CFF;
  --accent-purple: #A78BFA;
  --border-color: #2D2D5A;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: clip;
  line-height: 1.5;
  min-height: 100vh;
  animation: fadeIn 0.5s ease-out;
}

/* header / navigation */
.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  position: sticky;
  top: 0;
  background-color: var(--bg-primary);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.header.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.logo img {
  display: block;
  height: 55px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(107, 124, 255, 0.25)) drop-shadow(0 0 14px rgba(167, 139, 250, 0.18)) drop-shadow(0 0 22px rgba(229, 156, 0, 0.1));
  transition: filter 0.6s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 15px rgba(107, 124, 255, 0.6)) drop-shadow(0 0 30px rgba(167, 139, 250, 0.5)) drop-shadow(0 0 50px rgba(229, 156, 0, 0.3));
}

.nav-links {
  display: none;
  gap: 60px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  text-shadow: 0 0 12px rgba(107, 124, 255, 1), 0 0 30px rgba(167, 139, 250, 0.8), 0 0 50px rgba(229, 156, 0, 0.5);
}

.header-contact-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.header-contact-btn:hover {
  border-color: var(--accent-blue);
  background: rgba(107, 124, 255, 0.1);
  box-shadow: 0 0 8px rgba(107, 124, 255, 0.3), 0 0 18px rgba(167, 139, 250, 0.2), 0 0 30px rgba(229, 156, 0, 0.1);
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* hamburger to x animation */
.menu-btn.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-btn.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: var(--bg-primary);
  border-left: 1px solid var(--border-color);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s ease;
}

.mobile-link:hover {
  color: var(--text-primary);
}

.mobile-link.contact {
  color: var(--accent-blue);
  border-bottom: none;
  margin-top: 16px;
}

/* hero section */
.hero {
  padding: 40px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(107, 124, 255, 0.12) 0%, rgba(167, 139, 250, 0.08) 30%, rgba(229, 156, 0, 0.02) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(120px);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.34;
}

.hero > * {
  position: relative;
  z-index: 1;
}

@keyframes glowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.8;
  }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.hero-title .emphasis {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #E59C00, #FE6224);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.currently {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.zelle-logo {
  height: 22px;
  width: auto;
  vertical-align: middle;
}

.location {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 300;
  background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
              linear-gradient(135deg, rgba(107, 124, 255, 0.4), rgba(167, 139, 250, 0.3), rgba(229, 156, 0, 0.2)) border-box;
}

.globe {
  font-size: 16px;
}

.location-text {
  color: var(--text-primary);
  font-weight: 600;
}

.view-work-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.view-work-btn svg {
  width: 24px;
  height: 24px;
  animation: bounce 2s infinite;
}

.view-work-btn:hover {
  color: #E59C00;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}

/* work section */
.work-section {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* case study link wrapper */
.case-study-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* case study cards */
.case-study {
  border: 0.2px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
  border-color: rgba(229, 156, 0, 0.5);
}

/* glow effect element */
.case-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 156, 0, 0.18) 0%, rgba(254, 98, 36, 0.09) 30%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* different gradient directions for each case study */
.case-study:nth-child(1) {
  background: linear-gradient(135deg, #030030 0%, #0B001A 100%);
}

.case-study:nth-child(2) {
  background: linear-gradient(to right, #0B001A 0%, #030030 50%, #0B001A 100%);
}

.case-study:nth-child(3) {
  background: linear-gradient(225deg, #030030 0%, #0B001A 100%);
}

.case-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.case-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.case-title {
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  background: linear-gradient(90deg, #FFFFFF 0%, #FFF0E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.case-tag {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  color: #3B2DF6;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 6px 14px;
  position: relative;
  background-clip: padding-box;
}

.case-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(90deg, #2015B1, #3B2DF6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.case-image {
  order: -1;
  position: relative;
  z-index: 1;
}

.case-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1E1E4A 0%, #12122E 100%);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.case-image-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.case-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.case-link:hover,
.case-study:hover .case-link {
  border-color: #E59C00;
  background: rgba(229, 156, 0, 0.1);
  color: #FE6224;
}

/* report cards */
.reports-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.report-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.report {
  border: 0.2px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease;
  height: 100%;
}

.report:hover {
  border-color: rgba(107, 124, 255, 0.5);
}

/* report glow effect */
.report-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 124, 255, 0.22) 0%, rgba(167, 139, 250, 0.11) 30%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.report > *:not(.report-glow) {
  position: relative;
  z-index: 1;
}

.report:hover .case-link {
  border-color: var(--accent-blue);
  background: rgba(107, 124, 255, 0.1);
  color: var(--accent-blue);
}

/* different gradient for each report */
.report:nth-child(1) {
  background: linear-gradient(180deg, #030030 0%, #0B001A 100%);
}

.report:nth-child(2) {
  background: linear-gradient(to bottom right, #0B001A 0%, #030030 100%);
}

.report-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #FFFFFF 0%, #FFE8D6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.report .case-description {
  flex: 1;
}

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.report-tag {
  font-size: 12px;
  color: #3B2DF6;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 6px 14px;
  position: relative;
}

.report-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(90deg, #2015B1, #3B2DF6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.report .case-link {
  margin-top: 20px;
}

/* about section */
.about-section {
  padding: 60px 24px 0 24px;
  margin-top: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* standalone about page */
.about-section.about-page {
  margin-top: 0;
  padding-top: 60px;
}

/* about hero */
.about-hero {
  text-align: center;
  margin-bottom: 60px;
}

.about-section .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.about-title .emphasis {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #E59C00, #FE6224);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* about content - image + text */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 32px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image-placeholder {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #1a1a3e 0%, #0d0d24 100%);
  border-radius: 50%;
  border: 1px solid var(--border-color);
}

.about-photo {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
              linear-gradient(135deg, #3B2DF6, #6B7CFF, #E59C00) border-box;
  box-shadow: 0 0 30px rgba(59, 45, 246, 0.15);
}

.about-text {
  text-align: center;
  max-width: 680px;
}

.about-bio {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-bio.large {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* stats section */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
  margin-bottom: 60px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* about details grid */
.about-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  width: 100%;
}

.about-card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* experience items */
.experience-item {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.experience-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.experience-item:first-of-type {
  padding-top: 0;
}

.exp-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.exp-company {
  font-size: 14px;
  color: var(--text-secondary);
}

.exp-period {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
  opacity: 0.7;
}

/* tools grid */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.tool-tag:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

/* about section tablet */
@media (min-width: 768px) {
  .about-section {
    padding: 80px 40px 0 40px;
  }

  .about-section.about-page {
    padding-top: 80px;
  }

  .about-hero {
    margin-bottom: 80px;
  }

  .about-title {
    font-size: 48px;
  }

  .about-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
  }

  .about-image {
    flex: 0 0 auto;
  }

  .about-image-placeholder {
    max-width: 240px;
  }

  .about-text {
    flex: 0 1 auto;
    text-align: left;
  }

  .about-bio.large {
    font-size: 22px;
  }

  .about-stats {
    gap: 60px;
    padding: 48px 0;
  }

  .stat-number {
    font-size: 48px;
  }

  .about-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
    justify-items: stretch;
  }
}

/* about section desktop */
@media (min-width: 1024px) {
  .about-section {
    padding: 100px 60px 0 60px;
  }

  .about-title {
    font-size: 56px;
  }

  .about-content {
    gap: 48px;
  }

  .about-image-placeholder {
    max-width: 280px;
  }

  .about-bio {
    font-size: 17px;
  }

  .about-bio.large {
    font-size: 24px;
  }

  .about-stats {
    gap: 80px;
  }

  .stat-number {
    font-size: 56px;
  }

  .stat-label {
    font-size: 13px;
  }
}

/* about section large */
@media (min-width: 1280px) {
  .about-section {
    padding: 120px 80px 0 80px;
  }

  .about-title {
    font-size: 64px;
  }

  .about-image-placeholder {
    max-width: 320px;
  }

  .cta-wrapper {
    padding: 32px 80px 0 80px;
  }

  .cta-section {
    padding: 120px 80px;
  }
}

/* cta section */
.cta-wrapper {
  padding: 32px 24px 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.cta-section {
  padding: 80px 24px;
  text-align: center;
  background: radial-gradient(ellipse at center, #030030 0%, #0B001A 70%);
  margin-bottom: 24px;
  border-radius: 16px;
  border: 0.2px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.cta-section:hover {
  border-color: rgba(229, 156, 0, 0.5);
}

.cta-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 156, 0, 0.14) 0%, rgba(254, 98, 36, 0.07) 30%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.cta-section > *:not(.cta-glow) {
  position: relative;
  z-index: 1;
}

.cta-section:hover .contact-btn {
  border-color: #E59C00;
  background: rgba(229, 156, 0, 0.1);
}

.cta-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.cta-availability::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #50946E;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(80, 148, 110, 0.8), 0 0 16px rgba(80, 148, 110, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  border-color: #E59C00;
  background: rgba(229, 156, 0, 0.1);
}

.cta-subtitle {
  font-size: 16px;
  background: linear-gradient(90deg, #E59C00, #FE6224);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.9;
  margin-bottom: 32px;
}

.heart-outline {
  font-size: 18px;
  background: linear-gradient(90deg, #E59C00, #FE6224);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.availability {
  display: none;
}

/* footer */
.footer {
  padding: 120px 24px 40px 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}

.copyright {
  font-size: 12px;
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.footer-social a {
  color: var(--text-secondary);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.made-with {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0.5;
}

.heart {
  color: #EF4444;
}

.globe {
  display: inline-block;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* tablet - 768px+ */
@media (min-width: 768px) {
  .header {
    padding: 24px 40px;
  }

  .logo img {
    height: 80px;
  }

  .zelle-logo {
    height: 28px;
  }

  .menu-btn {
    display: none;
  }

  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }

  .nav-links {
    display: flex;
  }

  .header-contact-btn {
    display: inline-flex;
  }

  .hero {
    padding: 80px 40px 100px;
    min-height: auto;
  }

  .hero::before {
    width: 900px;
    height: 400px;
  }

  .hero-title {
    font-size: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title br {
    display: none;
  }

  .work-section {
    padding: 0 40px;
    gap: 32px;
  }

.case-study-link {
    display: block;
  }

  .case-study {
    flex-direction: row;
    padding: 0;
    padding-left: 32px;
    gap: 32px;
    align-items: stretch;
    height: 360px;
    overflow: hidden;
  }

  .case-glow {
    width: 550px;
    height: 550px;
  }

  .case-content {
    flex: 1;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .case-image {
    order: 0;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: stretch;
  }

  .case-image-img {
    border-radius: 0;
    object-fit: cover;
    object-position: center;
  }

  .case-title {
    font-size: 32px;
  }

  .reports-grid {
    flex-direction: row;
    gap: 24px;
  }

  .report {
    flex: 1;
    padding: 32px;
  }

  .report-title {
    font-size: 32px;
  }

  .cta-wrapper {
    padding: 32px 40px 0 40px;
  }

  .cta-section {
    padding: 100px 40px;
  }

  .cta-title {
    font-size: 48px;
  }

  .footer {
    padding: 120px 40px 40px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .made-with {
    font-size: 14px;
    max-width: 550px;
  }
}

/* desktop - 1024px+ */
@media (min-width: 1024px) {
  .header {
    padding: 24px 60px;
  }

  .hero {
    padding: 100px 60px 120px;
  }

  .hero::before {
    width: 1100px;
    height: 500px;
  }

  .hero-title {
    font-size: 64px;
    max-width: 900px;
  }

  .work-section {
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .case-study {
    padding: 0;
    padding-left: 40px;
    gap: 60px;
    height: 400px;
  }

  .case-glow {
    width: 550px;
    height: 550px;
  }

  .case-content {
    padding: 40px 0;
  }

  .case-title {
    font-size: 40px;
  }

  .case-description {
    font-size: 15px;
  }

  .report {
    padding: 40px;
  }

  .report-title {
    font-size: 36px;
  }

  .cta-wrapper {
    padding: 32px 60px 0 60px;
  }

  .cta-title {
    font-size: 64px;
  }

  .footer {
    padding: 120px 60px 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .made-with {
    font-size: 14px;
    max-width: 550px;
  }
}

/* large desktop 1280px+ */
@media (min-width: 1280px) {
  .header {
    padding: 24px 80px;
  }

  .hero {
    padding: 120px 80px 140px;
  }

  .hero::before {
    width: 1400px;
    height: 600px;
  }

  .hero-title {
    font-size: 72px;
    max-width: 1100px;
  }

  .work-section {
    padding: 0 80px;
  }

  .case-study {
    padding: 0;
    padding-left: 48px;
    height: 440px;
  }

  .case-content {
    padding: 48px 0;
  }

  .case-title {
    font-size: 48px;
  }

  .cta-wrapper {
    padding: 32px 80px 0 80px;
  }

  .footer {
    padding: 120px 80px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* lively case study */

/* hero section */
.case-hero {
  padding: 0;
}

.hero-banner {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}

/* project metadata */
.project-meta-section {
  padding: 0 24px 40px;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.meta-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

/* content sections */
.content-section {
  max-width: 900px;
  margin: 0 auto;
}

.case-section {
  padding: 60px 0 48px 0;
  position: relative;
  width: 100%;
}

.case-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: url('images/divide-line.svg') no-repeat center center;
  background-size: cover;
  opacity: 0.25;
}

.case-section:first-of-type::before,
.case-section.no-divider::before {
  display: none;
}

.case-section:nth-of-type(even)::before {
  transform: scaleY(-1);
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.body-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.body-text em {
  font-style: italic;
}

/* dark section */
.dark-section {
  background: var(--bg-primary);
}

/* text colors */
.text-orange {
  color: #E59C00;
}

.text-teal {
  color: #50946E;
}

.text-blue {
  color: #387DC9;
}

.text-white {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background: none !important;
}

/* text box */
.text-box {
  margin-bottom: 32px;
}

.text-box p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.text-box p em {
  font-style: italic;
}

/* section image */
.section-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
  object-fit: contain;
}

/* quote box - statement style */
.quote-box {
  margin: 32px 0;
  padding: 0;
  background: none;
  border: none;
}

.quote-box p {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  color: #50946E;
  margin: 0;
}

.quote-box p em {
  font-style: italic;
  font-weight: 600;
  color: #FFFFFF;
}

/* card grids */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}

/* insight cards */
.insight-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.insight-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.insight-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* direction cards */
.direction-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.direction-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-bottom: 12px;
}

.direction-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

/* solution cards */
.solution-card {
  padding: 32px 24px;
  border-radius: 16px;
  text-align: left;
}

.solution-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.solution-card ul {
  list-style: disc;
  padding-left: 20px;
  margin: 16px 0;
}

.solution-card li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.solution-card > p:last-child {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.teal-card {
  background: rgba(80, 148, 110, 0.1);
  border: 1px solid rgba(80, 148, 110, 0.3);
}

.orange-card {
  background: rgba(229, 156, 0, 0.1);
  border: 1px solid rgba(229, 156, 0, 0.3);
}

/* narrow content */
.narrow {
  max-width: 700px;
}

/* theory cards */
.theory-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.theory-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.theory-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.theory-card p em {
  font-style: italic;
}

/* highlight box - statement style */
.highlight-box {
  margin-top: 48px;
  padding: 0;
  background: none;
  border: none;
}

.highlight-box p {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #50946E;
  margin: 0;
}

.highlight-box.final {
  margin-top: 56px;
  text-align: left;
}

/* bento grid layout */
.section-content-wide {
  max-width: 1400px;
  margin: 0 auto;
}

.bento-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bento-item {
  background: rgba(10, 10, 40, 0.8);
  border: 1px solid rgba(59, 45, 246, 0.3);
  border-radius: 20px;
  padding: 32px;
}

.bento-text {
  display: flex;
  flex-direction: column;
}

.bento-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.bento-text .text-box {
  margin-bottom: 32px;
}

.bento-text .text-box p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.bento-text .text-box p em {
  font-style: italic;
}

.bento-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: auto;
  letter-spacing: 0.05em;
}

.bento-image {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* bento grid tablet */
@media (min-width: 768px) {
  .bento-row {
    flex-direction: row;
    gap: 24px;
  }

  .bento-text {
    flex: 1;
  }

  .bento-image {
    flex: 1;
    min-height: 400px;
  }

  .bento-title {
    font-size: 36px;
  }

  .bento-text .text-box p {
    font-size: 20px;
  }

  .bento-quote {
    font-size: 18px;
  }
}

/* bento grid desktop */
@media (min-width: 1024px) {
  .bento-item {
    padding: 48px;
  }

  .bento-title {
    font-size: 42px;
  }

  .bento-image {
    min-height: 500px;
  }

  .bento-quote {
    font-size: 20px;
  }
}

/* bento grid large */
@media (min-width: 1280px) {
  .bento-title {
    font-size: 48px;
  }

  .bento-text .text-box p {
    font-size: 22px;
  }
}

/* friction cards */
.friction-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.friction-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.friction-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* design blocks */
.design-block {
  margin-bottom: 48px;
}

.design-block h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.design-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* prototype wrapper */
.prototype-wrapper {
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.prototype-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* takeaway cards */
.takeaway-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.takeaway-num {
  font-size: 14px;
  font-weight: 600;
  color: #50946E;
  display: block;
  margin-bottom: 12px;
}

.takeaway-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.takeaway-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* case study tablet */
@media (min-width: 768px) {
  .case-hero {
    padding: 0;
  }

  .hero-banner {
    border-radius: 0;
  }

  .project-meta-section {
    padding: 0 40px 60px;
  }

  .project-meta {
    flex-direction: row;
    justify-content: flex-start;
    gap: 60px;
  }

  .case-section {
    padding: 60px 0 56px 0;
  }

  .section-content {
    padding: 0 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-image {
    border-radius: 12px;
    margin: 32px 0;
  }

  .card-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.five-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-card {
    padding: 40px 32px;
  }

  .solution-card h3 {
    font-size: 28px;
  }
}

/* case study desktop */
@media (min-width: 1024px) {
  .case-hero {
    padding: 0;
  }

  .hero-banner {
    border-radius: 0;
  }

  .project-meta-section {
    padding: 0 60px 60px;
  }

  .project-meta {
    max-width: 900px;
    margin: 0 auto;
  }

  .case-section {
    padding: 60px 0 64px 0;
  }

  .section-content {
    max-width: 1000px;
    padding: 0 60px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-image {
    border-radius: 16px;
    margin: 32px 0;
  }

  .card-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid.five-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* case study large */
@media (min-width: 1280px) {
  .case-hero {
    padding: 0;
    max-width: none;
    margin: 0;
  }

  .hero-banner {
    border-radius: 0;
  }

  .project-meta-section {
    padding: 0 80px 80px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .case-section {
    padding: 60px 0 80px 0;
  }

  .section-content {
    max-width: 1100px;
    padding: 0 80px;
  }

  .section-title {
    font-size: 40px;
  }

  .section-image {
    border-radius: 20px;
    margin: 40px 0;
  }

  .card-grid.five-col {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* prndl case study */

/* red accent color for prndl */
.text-red {
  color: rgba(225, 6, 0, 0.8) !important;
  -webkit-text-fill-color: rgba(225, 6, 0, 0.8) !important;
  background: none !important;
}

/* gbu case study */

/* gold accent color for gbu */
.text-gold {
  color: #D4A84B;
}

/* gold card style */
.solution-card.gold-card {
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.1) 0%, rgba(212, 168, 75, 0.05) 100%);
  border-color: rgba(212, 168, 75, 0.3);
}

/* gold highlight box */
.highlight-box.gold-highlight {
  border: 1px solid rgba(212, 168, 75, 0.3);
  background: rgba(212, 168, 75, 0.05);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}

/* solution flow - problem to solution */
.solution-flow {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.solution-pair {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.problem-block,
.solution-block {
  padding: 24px;
  border-radius: 12px;
  flex: 1;
}

.problem-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
}

.problem-block h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.problem-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.solution-block {
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.1) 0%, rgba(212, 168, 75, 0.05) 100%);
  border: 1px solid rgba(212, 168, 75, 0.3);
}

.solution-block h4 {
  font-size: 14px;
  font-weight: 600;
  color: #D4A84B;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.solution-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.arrow {
  font-size: 24px;
  color: #D4A84B;
  text-align: center;
  font-weight: 300;
}

@media (min-width: 768px) {
  .solution-pair {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  
  .arrow {
    flex: 0 0 auto;
  }
}

/* red quote box */
.quote-box.red-quote p {
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.8), rgba(255, 80, 60, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* white quote box */
.quote-box.white-quote p {
  color: #FFFFFF;
}

/* issue boxes */
.issue-box {
  padding: 32px 24px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  text-align: center;
}

.issue-box p {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin: 0;
}

/* red highlight box */
.highlight-box.red-highlight p {
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.8), rgba(255, 80, 60, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* solution hero section */
.solution-hero {
  padding: 80px 24px !important;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(225, 6, 0, 0.05) 50%, var(--bg-primary) 100%);
}

.solution-hero::before {
  display: none !important;
}

.solution-hero .section-label {
  color: rgba(225, 6, 0, 0.5);
  font-size: 14px;
  letter-spacing: 0.2em;
}

.solution-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.solution-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.solution-text strong {
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .solution-hero {
    padding: 80px 40px 50px !important;
  }

  .solution-title {
    font-size: 48px;
  }

  .solution-text {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .solution-hero {
    padding: 100px 60px 50px !important;
  }

  .solution-title {
    font-size: 56px;
  }
}

@media (min-width: 1280px) {
  .solution-title {
    font-size: 64px;
  }
}

/* subsection title */
.subsection-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 40px 0 24px;
}

/* image caption */
.image-caption {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: -16px;
  margin-bottom: 32px;
}

/* two column layout */
.two-col-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.two-col-layout .col-small {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.two-col-layout .col-large {
  display: flex;
  flex-direction: column;
}

.two-col-layout .col-small .section-image,
.two-col-layout .col-large .section-image {
  margin: 0;
}

.two-col-layout .col-large .image-caption {
  margin-top: 12px;
  margin-bottom: 0;
}

/* video styles */
.section-video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

/* link cards */
.link-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: rgba(225, 6, 0, 0.5);
  background: rgba(225, 6, 0, 0.05);
}

.link-card-image {
  width: 100%;
  height: auto;
  display: block;
}

.link-card-link {
  display: block;
  padding: 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.link-card-link:hover {
  color: rgba(225, 6, 0, 0.5);
}

/* prndl tablet 768px+ */
@media (min-width: 768px) {
  .two-col-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-col-layout .col-small {
    flex: 0 0 35%;
  }

  .two-col-layout .col-large {
    flex: 0 0 65%;
  }

  .two-col-layout.reverse {
    flex-direction: row-reverse;
  }

  .section-video {
    border-radius: 12px;
    margin: 32px 0;
  }

  .subsection-title {
    font-size: 24px;
  }
}

/* prndl desktop 1024px+ */
@media (min-width: 1024px) {
  .section-video {
    border-radius: 16px;
    margin: 40px 0;
  }

  .subsection-title {
    font-size: 28px;
  }
}

/* prndl large 1280px+ */
@media (min-width: 1280px) {
  .section-video {
    border-radius: 20px;
    margin: 48px 0;
  }
}
